report begonnen

This commit is contained in:
Frederik Jaeckel 2022-08-16 17:05:01 +02:00
parent 810ecea0ba
commit 70038eb15e
6 changed files with 312 additions and 2 deletions

View file

@ -11,6 +11,7 @@ from .wizard_openline import OpenCashBook, OpenCashBookStart
from .configuration import Configuration, UserConfiguration
from .category import Category
from .reconciliation import Reconciliation
from .cbreport import CashbookReport
def register():
Pool.register(
@ -24,6 +25,9 @@ def register():
Reconciliation,
OpenCashBookStart,
module='cashbook', type_='model')
Pool.register(
CashbookReport,
module='cashbook', type_='report')
Pool.register(
OpenCashBook,
module='cashbook', type_='wizard')