Commit 0e0896c7 authored by Guillaume Michon's avatar Guillaume Michon

Added edit() on FakeMovement


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3373 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 49958960
......@@ -613,3 +613,11 @@ class FakeMovement:
Which must be shared by all movement
"""
return self.__movement_list[0].getVariationCategoryList()
def edit(self, **kw):
"""
Simple call to each movement edit() method
"""
for movement in self.getMovementList():
movement.edit(**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