Commit 2d4a6d00 authored by Aurel's avatar Aurel

forgot argument in previous commit

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@11550 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c45e4251
......@@ -74,6 +74,12 @@
<dictionary/>
</value>
</item>
<item>
<key> <string>isAccountable</string> </key>
<value>
<dictionary/>
</value>
</item>
<item>
<key> <string>isMovement</string> </key>
<value>
......@@ -94,6 +100,7 @@
<value>
<list>
<string>isMovement</string>
<string>isAccountable</string>
<string>uid</string>
<string>getStopDate</string>
<string>getBaobabDestinationUid</string>
......@@ -119,6 +126,7 @@
<item>
<key> <string>arguments_src</string> </key>
<value> <string>isMovement\r\n
isAccountable\r\n
uid\r\n
getStopDate\r\n
getBaobabDestinationUid\r\n
......@@ -178,7 +186,7 @@ WHERE\n
\n
<dtml-let movement_list="[]">\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
<dtml-if "isMovement[loop_item] and getAggregateUidList[loop_item] and isAccountable[loop_item] ">\n
<dtml-if "isMovement[loop_item] and isAccountable[loop_item] and getAggregateUidList[loop_item]">\n
<dtml-call expr="movement_list.append(loop_item)">\n
</dtml-if>\n
</dtml-in>\n
......@@ -255,7 +263,7 @@ WHERE\n
\n
<dtml-let movement_list="[]">\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
<dtml-if "isMovement[loop_item] and getAggregateUidList[loop_item] and isAccountable[loop_item] ">\n
<dtml-if "isMovement[loop_item] and isAccountable[loop_item] and getAggregateUidList[loop_item]">\n
<dtml-call expr="movement_list.append(loop_item)">\n
</dtml-if>\n
</dtml-in>\n
......
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