Commit 817907a2 authored by Kevin Deldycke's avatar Kevin Deldycke

Stat column were inverted


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5198 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 000a00bd
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
\n \n
kw = {}\n kw = {}\n
kw[\'stat\'] = 1\n kw[\'stat\'] = 1\n
kw[\'omit_output\'] = 1\n kw[\'omit_input\'] = 1\n
\n \n
for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_reference\',\n for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_reference\',\n
\'entity\', \'node\', \'amount\', \'amount_range_min\', \'amount_max_range_max\',\n \'entity\', \'node\', \'amount\', \'amount_range_min\', \'amount_max_range_max\',\n
...@@ -82,7 +82,7 @@ for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_refer ...@@ -82,7 +82,7 @@ for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_refer
\n \n
result = context.AccountingTransactionModule_zGetAccountingTransactionList(selection=selection, **kw)\n result = context.AccountingTransactionModule_zGetAccountingTransactionList(selection=selection, **kw)\n
row = result[0]\n row = result[0]\n
return float(\'%.02f\' % (row.quantity or 0.0))\n return float(\'%.02f\' % (row.quantity and - row.quantity or 0.0))\n
# vim: syntax=python\n # vim: syntax=python\n
</string> </value> </string> </value>
</item> </item>
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
\n \n
kw = {}\n kw = {}\n
kw[\'stat\'] = 1\n kw[\'stat\'] = 1\n
kw[\'omit_input\'] = 1\n kw[\'omit_output\'] = 1\n
\n \n
for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_reference\',\n for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_reference\',\n
\'entity\', \'node\', \'amount\', \'amount_range_min\', \'amount_max_range_max\',\n \'entity\', \'node\', \'amount\', \'amount_range_min\', \'amount_max_range_max\',\n
...@@ -82,7 +82,7 @@ for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_refer ...@@ -82,7 +82,7 @@ for keyword in [\'section_category\', \'from_date\', \'to_date\', \'source_refer
\n \n
result = context.AccountingTransactionModule_zGetAccountingTransactionList(selection=selection, **kw)\n result = context.AccountingTransactionModule_zGetAccountingTransactionList(selection=selection, **kw)\n
row = result[0]\n row = result[0]\n
return float(\'%.02f\' % (row.quantity and - row.quantity or 0.0))\n return float(\'%.02f\' % (row.quantity or 0.0))\n
# vim: syntax=python\n # vim: syntax=python\n
</string> </value> </string> </value>
</item> </item>
......
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