Commit 9a9f0fea authored by Romain Courteaud's avatar Romain Courteaud

Add SplitMovementGroup, used to separate every movement.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6188 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2bb168a3
......@@ -991,3 +991,11 @@ class AggregateMovementGroup(RootMovementGroup):
allow_class(AggregateMovementGroup)
class SplitMovementGroup(RootMovementGroup):
def __init__(self,movement, **kw):
RootMovementGroup.__init__(self, movement=movement, **kw)
def test(self, movement):
return 0
allow_class(AggregateMovementGroup)
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