Commit 44ea0c4c authored by Vincent Pelletier's avatar Vincent Pelletier

Use isInventoryMovement instead of isInventoryLine:

 - it was missnamed
 - cells defined on lines must be indexed in place of the lines if any exist (already handled via isAccountable).


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16124 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e4edae53
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
</value> </value>
</item> </item>
<item> <item>
<key> <string>isInventoryLine</string> </key> <key> <string>isInventoryMovement</string> </key>
<value> <value>
<dictionary/> <dictionary/>
</value> </value>
...@@ -203,7 +203,7 @@ ...@@ -203,7 +203,7 @@
<string>getPortalType</string> <string>getPortalType</string>
<string>getVariationText</string> <string>getVariationText</string>
<string>getSubVariationText</string> <string>getSubVariationText</string>
<string>isInventoryLine</string> <string>isInventoryMovement</string>
</list> </list>
</value> </value>
</item> </item>
...@@ -243,7 +243,7 @@ isAccountable\r\n ...@@ -243,7 +243,7 @@ isAccountable\r\n
getPortalType\r\n getPortalType\r\n
getVariationText\r\n getVariationText\r\n
getSubVariationText\r\n getSubVariationText\r\n
isInventoryLine</string> </value> isInventoryMovement</string> </value>
</item> </item>
<item> <item>
<key> <string>connection_id</string> </key> <key> <string>connection_id</string> </key>
...@@ -269,7 +269,7 @@ WHERE\n ...@@ -269,7 +269,7 @@ WHERE\n
\n \n
<dtml-let row_list="[]">\n <dtml-let row_list="[]">\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n <dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
<dtml-if expr="isInventoryLine[loop_item] and isMovement[loop_item] and isAccountable[loop_item] and getResourceUid[loop_item]">\n <dtml-if expr="isInventoryMovement[loop_item] and isMovement[loop_item] and isAccountable[loop_item] and getResourceUid[loop_item]">\n
<dtml-if "getDestinationUid[loop_item]">\n <dtml-if "getDestinationUid[loop_item]">\n
<dtml-call expr="row_list.append([\n <dtml-call expr="row_list.append([\n
uid[loop_item], \n uid[loop_item], \n
...@@ -393,7 +393,7 @@ WHERE\n ...@@ -393,7 +393,7 @@ WHERE\n
\n \n
<dtml-let row_list="[]">\n <dtml-let row_list="[]">\n
<dtml-in prefix="loop" expr="_.range(_.len(uid))">\n <dtml-in prefix="loop" expr="_.range(_.len(uid))">\n
<dtml-if expr="isInventoryLine[loop_item] and isMovement[loop_item] and isAccountable[loop_item] and getResourceUid[loop_item]">\n <dtml-if expr="isInventoryMovement[loop_item] and isMovement[loop_item] and isAccountable[loop_item] and getResourceUid[loop_item]">\n
<dtml-if "getDestinationUid[loop_item]">\n <dtml-if "getDestinationUid[loop_item]">\n
<dtml-call expr="row_list.append([\n <dtml-call expr="row_list.append([\n
uid[loop_item], \n uid[loop_item], \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