Commit eb180004 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

call setMappedProperty() instead of edit() to support mapped properties.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33502 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 12e717d1
......@@ -107,4 +107,5 @@ class AcceptSolver(SolverMixin, ConfigurableMixin, XMLObject):
for property_id in property_id_list:
if not simulation_movement.isPropertyRecorded(property_id):
simulation_movement.recordProperty(property_id)
simulation_movement.edit(**value_dict)
for property_id, value in value_dict.iteritems():
simulation_movement.setMappedProperty(property_id, value)
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