Commit a09f06d6 authored by Yusei Tahara's avatar Yusei Tahara

production order movement may not have specialise category value.

parent 2883a076
......@@ -81,7 +81,13 @@ for movement in context.getMovementList():\n
movement_quantity = movement.getQuantity()\n
movement_destination = movement.getDestination()\n
\n
for material in movement.getSpecialiseValue().objectValues():\n
transformation = movement.getSpecialiseValue()\n
if transformation is not None:\n
transformation_line_list = transformation.objectValues()\n
else:\n
transformation_line_list = ()\n
\n
for material in transformation_line_list:\n
material_resource_uid = material.getResourceUid()\n
if not material_resource_uid:\n
continue\n
......
2011-06-15 yusei
* production order movement may not have specialise category value.
2011-06-07 yusei
* Stop displaying non-dated production order in planning box. It is useless.
......
462
\ No newline at end of file
463
\ 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