Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
3deee615
Commit
3deee615
authored
Feb 03, 2014
by
Tatuya Kamada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZSQLCatalog: make searchResults query dynamically replacable.
parent
6f54f10e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
product/ZSQLCatalog/SQLCatalog.py
product/ZSQLCatalog/SQLCatalog.py
+4
-2
No files found.
product/ZSQLCatalog/SQLCatalog.py
View file @
3deee615
...
...
@@ -2449,14 +2449,16 @@ class Catalog(Folder,
def
getSearchResultsMethod
(
self
):
return
getattr
(
self
,
self
.
sql_search_results
)
def
searchResults
(
self
,
REQUEST
=
None
,
**
kw
):
def
searchResults
(
self
,
REQUEST
=
None
,
search_results_method
=
None
,
**
kw
):
""" Returns a list of brains from a set of constraints on variables """
if
'only_group_columns'
in
kw
:
# searchResults must be consistent in API with countResults
raise
ValueError
(
'only_group_columns does not belong to this API '
'level, use queryResults directly'
)
if
search_results_method
is
None
:
search_results_method
=
self
.
getSearchResultsMethod
()
return
self
.
queryResults
(
se
lf
.
getSearchResultsMethod
()
,
se
arch_results_method
,
REQUEST
=
REQUEST
,
extra_column_list
=
self
.
getCatalogSearchResultKeys
(),
**
kw
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment