Commit c2e0bafb authored by Aurel's avatar Aurel

add method to close counter date


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18273 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 636dc3af
...@@ -699,6 +699,13 @@ class TestERP5BankingMixin: ...@@ -699,6 +699,13 @@ class TestERP5BankingMixin:
# open it # open it
counter.open() counter.open()
def closeCounterDate(self, id):
"""
close the counter date
"""
module = self.getCounterDateModule()
counter_date = module[id]
counter_date.close()
def initDefaultVariable(self): def initDefaultVariable(self):
""" """
......
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