Commit 367bc375 authored by Jérome Perrin's avatar Jérome Perrin

really fix after_path_and_method_id syntax

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36006 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1a38d719
......@@ -248,8 +248,9 @@ for month in range(1, month_count + 1):\n
portal_type=payment.getPortalAccountingMovementTypeList()):\n
if line.getGroupingReference():\n
line.activate(after_path_and_method_id=(\n
((payment.getPath(),), (\'recursiveImmediateReindexObject\', \'immediateReindexObject\')),\n
((line.getPath(),), (\'recursiveImmediateReindexObject\', \'immediateReindexObject\')),),\n
((payment.getPath(), line.getPath()),\n
(\'recursiveImmediateReindexObject\',\n
\'immediateReindexObject\')),),\n
).AccountingTransactionLine_resetGroupingReference()\n
\n
else:\n
......
......@@ -176,8 +176,9 @@ for month in range(1, month_count + 1):\n
portal_type=ptr.getPortalAccountingMovementTypeList()):\n
if line.getGroupingReference():\n
line.activate(after_path_and_method_id=(\n
((ptr.getPath(),), (\'recursiveImmediateReindexObject\', \'immediateReindexObject\')),\n
((line.getPath(),), (\'recursiveImmediateReindexObject\', \'immediateReindexObject\')),),\n
((ptr.getPath(), line.getPath),\n
(\'recursiveImmediateReindexObject\',\n
\'immediateReindexObject\')),),\n
).AccountingTransactionLine_resetGroupingReference()\n
\n
\n
......
161
\ No newline at end of file
162
\ 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