Commit 1b9379ed authored by Sebastien Robin's avatar Sebastien Robin

the parameter dict was missing on several methods calls


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4571 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 35e78428
...@@ -82,32 +82,32 @@ class Order(Delivery): ...@@ -82,32 +82,32 @@ class Order(Delivery):
return Delivery.getTotalQuantity(self, **kw) return Delivery.getTotalQuantity(self, **kw)
def applyToOrderRelatedMovement(self, portal_type='Simulation Movement', \ def applyToOrderRelatedMovement(self, portal_type='Simulation Movement', \
method_id = 'expand'): method_id = 'expand',**kw):
""" """
Warning: does not work if it was not catalogued immediately Warning: does not work if it was not catalogued immediately
""" """
for my_simulation_movement in self.getOrderRelatedValueList( for my_simulation_movement in self.getOrderRelatedValueList(
portal_type='Simulation Movement'): portal_type='Simulation Movement'):
# And apply # And apply
getattr(my_simulation_movement, method_id)() getattr(my_simulation_movement, method_id)(**kw)
for m in self.contentValues(filter={'portal_type': \ for m in self.contentValues(filter={'portal_type': \
self.getPortalMovementTypeList()}): self.getPortalMovementTypeList()}):
# Find related in simulation # Find related in simulation
for my_simulation_movement in m.getOrderRelatedValueList( for my_simulation_movement in m.getOrderRelatedValueList(
portal_type='Simulation Movement'): portal_type='Simulation Movement'):
# And apply # And apply
getattr(my_simulation_movement, method_id)() getattr(my_simulation_movement, method_id)(**kw)
for c in m.contentValues(filter={'portal_type': for c in m.contentValues(filter={'portal_type':
self.getPortalMovementTypeList()}): self.getPortalMovementTypeList()}):
for my_simulation_movement in c.getOrderRelatedValueList( for my_simulation_movement in c.getOrderRelatedValueList(
portal_type='Simulation Movement'): portal_type='Simulation Movement'):
# And apply # And apply
getattr(my_simulation_movement, method_id)() getattr(my_simulation_movement, method_id)(**kw)
def applyToOrderRelatedAppliedRule(self, method_id='expand'): def applyToOrderRelatedAppliedRule(self, method_id='expand',**kw):
my_applied_rule = self.getCausalityRelatedValue( \ my_applied_rule = self.getCausalityRelatedValue( \
portal_type='Applied Rule') portal_type='Applied Rule')
getattr(my_applied_rule.getObject(), method_id)() getattr(my_applied_rule.getObject(), method_id)(**kw)
security.declareProtected(Permissions.AccessContentsInformation, \ security.declareProtected(Permissions.AccessContentsInformation, \
......
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