Commit 58ab2596 authored by Rafael Monnerat's avatar Rafael Monnerat Committed by Xiaowu Zhang

Split aggregated Values when use splitAndDefer

And merged with 5c09e2e2
parent 8ee8c67e
...@@ -66,6 +66,9 @@ class SplitAndDefer(CopyToTarget): ...@@ -66,6 +66,9 @@ class SplitAndDefer(CopyToTarget):
# Adopt different dates for deferred movements # Adopt different dates for deferred movements
movement_dict = _getPropertyAndCategoryList(simulation_movement) movement_dict = _getPropertyAndCategoryList(simulation_movement)
# new properties # new properties
delivery = simulation_movement.getDeliveryValue()
aggregate_set = set(simulation_movement.getAggregateList())
aggregate_diff_set = aggregate_set.difference(delivery.getAggregateList())
movement_dict.update( movement_dict.update(
portal_type="Simulation Movement", portal_type="Simulation Movement",
id=new_id, id=new_id,
...@@ -98,7 +101,15 @@ class SplitAndDefer(CopyToTarget): ...@@ -98,7 +101,15 @@ class SplitAndDefer(CopyToTarget):
if stop_date is not None: if stop_date is not None:
new_movement.recordProperty('stop_date') new_movement.recordProperty('stop_date')
new_movement.edit(stop_date=stop_date) new_movement.edit(stop_date=stop_date)
new_movement.recordProperty('aggregate')
new_movement.edit(aggregate_list = list(aggregate_diff_set))
new_movement.expand(activate_kw=self.additional_parameters) new_movement.expand(activate_kw=self.additional_parameters)
# Only update simulation movement if quantity was changed.
simulation_movement.recordProperty('aggregate')
simulation_movement.edit(aggregate_list=delivery.getAggregateList())
# adopt new quantity on original simulation movement # adopt new quantity on original simulation movement
simulation_movement.edit(quantity=new_movement_quantity) simulation_movement.edit(quantity=new_movement_quantity)
simulation_movement.setDefaultActivateParameterDict(self.activate_kw) simulation_movement.setDefaultActivateParameterDict(self.activate_kw)
......
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