bok, line, type, line-open-wizard, context
This commit is contained in:
parent
a9f3eb12b4
commit
ba442b726e
23 changed files with 974 additions and 8 deletions
10
__init__.py
10
__init__.py
|
@ -5,8 +5,18 @@
|
|||
|
||||
from trytond.pool import Pool
|
||||
from .book import Book
|
||||
from .account_type import AccountType
|
||||
from .line import Line, LineContext
|
||||
from .wizard_openline import OpenCashBook, OpenCashBookStart
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
AccountType,
|
||||
Book,
|
||||
LineContext,
|
||||
Line,
|
||||
OpenCashBookStart,
|
||||
module='cashbook', type_='model')
|
||||
Pool.register(
|
||||
OpenCashBook,
|
||||
module='cashbook', type_='wizard')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue