Commit 7d5041e8 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

now we need to pass property id list instead of a single property id to...

now we need to pass property id list instead of a single property id to _solveRecursively() since r33495.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33499 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0ee3a7d7
......@@ -77,7 +77,8 @@ class UnifySolver(AcceptSolver):
for x in self.getDeliveryValue().getMovementList()], [])
for simulation_movement in simulation_movement_list:
value_dict = {solved_property:new_value}
self._solveRecursively(simulation_movement, value_dict, solved_property)
self._solveRecursively(simulation_movement, value_dict,
[solved_property])
simulation_movement.expand()
# Finish solving
self.succeed()
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