Commit 6659fcba authored by Sebastien Robin's avatar Sebastien Robin

check if the quantity is defined on inventory line


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5019 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f78f1ee5
......@@ -81,7 +81,7 @@ class Inventory(Delivery):
node = self.getDestination()
for movement in self.getMovementList():
resource = movement.getResourceValue()
if resource is not None:
if resource is not None and movement.getInventory() is not None:
variation_text = movement.getVariationText()
if (resource,variation_text) not in resource_and_variation_list:
resource_and_variation_list.append((resource,variation_text))
......
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