Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tomáš Peterka
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
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
product/ZSQLCatalog/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,
...
@@ -2439,6 +2439,10 @@ class Catalog(Folder,
def
searchResults
(
self
,
REQUEST
=
None
,
**
kw
):
def
searchResults
(
self
,
REQUEST
=
None
,
**
kw
):
""" Returns a list of brains from a set of constraints on variables """
""" 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
)
method
=
getattr
(
self
,
self
.
sql_search_results
)
return
self
.
queryResults
(
method
,
REQUEST
=
REQUEST
,
extra_column_list
=
self
.
getCatalogSearchResultKeys
(),
**
kw
)
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