Commit 840ebff9 authored by Jérome Perrin's avatar Jérome Perrin

disable implicit limit

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36027 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4679ff80
......@@ -74,8 +74,12 @@ if checked_uid_list:\n
getObject = portal.portal_catalog.getObject\n
delivery_list = [getObject(uid) for uid in checked_uid_list]\n
else:\n
delivery_list = \\\n
portal_selections.callSelectionFor(selection_name, context=context)\n
params = portal_selections.getSelectionParamsFor(selection_name)\n
params[\'limit\'] = None # XXX potentially very big report\n
delivery_list = portal_selections.callSelectionFor(\n
selection_name,\n
context=context,\n
params=params)\n
\n
\n
account_reference_cache = dict()\n
......@@ -280,6 +284,9 @@ return line_list\n
<string>_getiter_</string>
<string>uid</string>
<string>delivery_list</string>
<string>params</string>
<string>None</string>
<string>_write_</string>
<string>dict</string>
<string>account_reference_cache</string>
<string>getAccountReference</string>
......@@ -296,7 +303,6 @@ return line_list\n
<string>node_title</string>
<string>node_account_type_title</string>
<string>node_financial_section_title</string>
<string>None</string>
</tuple>
</value>
</item>
......
1244
\ No newline at end of file
1245
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment