bok, line, type, line-open-wizard, context

This commit is contained in:
Frederik Jaeckel 2022-08-05 16:47:43 +02:00
parent a9f3eb12b4
commit ba442b726e
23 changed files with 974 additions and 8 deletions

View file

@ -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')