Commit a7772499 authored by Jérome Perrin's avatar Jérome Perrin

fix stat method on account module when the list is filtered.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9759 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8c89837a
...@@ -83,9 +83,9 @@ if kw.get(\'stat\'):\n ...@@ -83,9 +83,9 @@ if kw.get(\'stat\'):\n
if selection_params.get(\'closed_summary\'):\n if selection_params.get(\'closed_summary\'):\n
kwd[\'closed_summary\'] = selection_params[\'closed_summary\']\n kwd[\'closed_summary\'] = selection_params[\'closed_summary\']\n
if selection.isInvertMode():\n if selection.isInvertMode():\n
kwd[\'selection_uids\'] = selection.getInvertModeUidList()\n kwd[\'stock.node_uid\'] = selection.getInvertModeUidList()\n
# is list filtered ?\n # is list filtered ?\n
if \'title\' in selection_params or \\\n elif \'title\' in selection_params or \\\n
\'preferred_gap_id\' in selection_params or\\\n \'preferred_gap_id\' in selection_params or\\\n
\'transalated_validation_state_title\' in selection_params:\n \'transalated_validation_state_title\' in selection_params:\n
# if yes, apply the same filter here\n # if yes, apply the same filter here\n
......
25 26
\ No newline at end of file \ 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