Commit 5828c742 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

modify according to the new simulation hierarchy.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@32663 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 15d6ab02
...@@ -585,8 +585,9 @@ class TestProductionOrderMixin(TestOrderMixin): ...@@ -585,8 +585,9 @@ class TestProductionOrderMixin(TestOrderMixin):
want_consume_quantity = self.colour_size_quantity_dict[colour][size] want_consume_quantity = self.colour_size_quantity_dict[colour][size]
want_consume_for_production = want_produced_quantity * want_consume_quantity want_consume_for_production = want_produced_quantity * want_consume_quantity
produced_movement = order_movement.getDeliveryRelatedValue(\ order_simulation_movement = order_movement.getDeliveryRelatedValue(\
portal_type='Simulation Movement') portal_type='Simulation Movement')
produced_movement = order_simulation_movement.contentValues()[0].contentValues()[0]
self.assertEquals( self.assertEquals(
want_produced_quantity, want_produced_quantity,
...@@ -628,14 +629,17 @@ class TestProductionOrderMixin(TestOrderMixin): ...@@ -628,14 +629,17 @@ class TestProductionOrderMixin(TestOrderMixin):
applied_rule = order.getCausalityRelatedValue(portal_type = self.applied_rule_portal_type) applied_rule = order.getCausalityRelatedValue(portal_type = self.applied_rule_portal_type)
production_movement_list = applied_rule.contentValues() order_simulation_movement_list = applied_rule.contentValues()
# XXX: hardcode # XXX: hardcode
self.assertEquals( self.assertEquals(
1, 1,
len(production_movement_list) len(order_simulation_movement_list)
) )
order_simulation_movement = order_simulation_movement_list[0]
production_applied_rule = order_simulation_movement.contentValues()[0]
production_movement_list = production_applied_rule.contentValues()
production_movement = production_movement_list[0] production_movement = production_movement_list[0]
transformation_applied_rule = production_movement.contentValues()[0] transformation_applied_rule = production_movement.contentValues()[0]
......
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