Commit 95e4d93a authored by Nicolas Dumazet's avatar Nicolas Dumazet

Syle only: add linebreaks, save indentation to improve readability.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31470 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1fb82d4a
...@@ -561,15 +561,18 @@ class SimulationMovement(Movement, PropertyRecordableMixin): ...@@ -561,15 +561,18 @@ class SimulationMovement(Movement, PropertyRecordableMixin):
if self.getDeliveryValue() is not None: if self.getDeliveryValue() is not None:
# already delivered # already delivered
return False return False
# might be buildable - business path depended # might be buildable - business path depended
business_path = self.getCausalityValue(portal_type='Business Path') business_path = self.getCausalityValue(portal_type='Business Path')
explanation_value = self.getExplanationValue() explanation_value = self.getExplanationValue()
if business_path is not None and explanation_value is not None:
if business_path is None or explanation_value is None:
return True
predecessor = business_path.getPredecessorValue() predecessor = business_path.getPredecessorValue()
if predecessor is None: if predecessor is None:
# first one, can be built # first one, can be built
return True return True
else:
for successor_related in predecessor.getSuccessorRelatedValueList(): for successor_related in predecessor.getSuccessorRelatedValueList():
for business_path_movement in successor_related \ for business_path_movement in successor_related \
.getRelatedSimulationMovementValueList(explanation_value): .getRelatedSimulationMovementValueList(explanation_value):
...@@ -579,6 +582,7 @@ class SimulationMovement(Movement, PropertyRecordableMixin): ...@@ -579,6 +582,7 @@ class SimulationMovement(Movement, PropertyRecordableMixin):
.getDeliveryValue() .getDeliveryValue()
if business_path_movement_delivery is None: if business_path_movement_delivery is None:
return False # related movement is not delivered yet return False # related movement is not delivered yet
business_path_movement_delivery_document = \ business_path_movement_delivery_document = \
business_path_movement_delivery.getParentValue() business_path_movement_delivery.getParentValue()
# here we can optimise somehow, as # here we can optimise somehow, as
......
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