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

Include "rejected" state in ignored states.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15249 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent bfdbc30e
......@@ -94,7 +94,7 @@ total_payable_price_per_node_section = dict()\n
\n
if simulation_state is None:\n
state_list = [x[1] for x in context.Base_getTranslatedWorkflowStateItemList(wf_id=\'accounting_workflow\')]\n
simulation_state = [x for x in state_list if x not in (\'draft\', \'cancelled\', \'deleted\')]\n
simulation_state = [x for x in state_list if x not in (\'draft\', \'cancelled\', \'deleted\', \'rejected\')]\n
\n
if context.AccountingTransaction_isSourceView():\n
is_source = 1\n
......
357
\ No newline at end of file
358
\ 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