Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
135
Merge Requests
135
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
98748a0e
Commit
98748a0e
authored
Sep 08, 2011
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enforce API consistency between searchResults and countResults.
parent
4038b4da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
SQLCatalog.py
product/ZSQLCatalog/SQLCatalog.py
+4
-0
No files found.
product/ZSQLCatalog/SQLCatalog.py
View file @
98748a0e
...
...
@@ -2439,6 +2439,10 @@ class Catalog(Folder,
def
searchResults
(
self
,
REQUEST
=
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'
)
method
=
getattr
(
self
,
self
.
sql_search_results
)
return
self
.
queryResults
(
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