report ok, auf book und line

berechtigungen optimiert
This commit is contained in:
Frederik Jaeckel 2022-08-17 17:16:23 +02:00
parent 70038eb15e
commit ab43044f64
21 changed files with 1339 additions and 115 deletions

View file

@ -8,10 +8,11 @@ from .book import Book
from .types import Type
from .line import Line, LineContext
from .wizard_openline import OpenCashBook, OpenCashBookStart
from .wizard_runreport import RunCbReport, RunCbReportStart
from .configuration import Configuration, UserConfiguration
from .category import Category
from .reconciliation import Reconciliation
from .cbreport import CashbookReport
from .cbreport import ReconciliationReport
def register():
Pool.register(
@ -24,10 +25,12 @@ def register():
Line,
Reconciliation,
OpenCashBookStart,
RunCbReportStart,
module='cashbook', type_='model')
Pool.register(
CashbookReport,
ReconciliationReport,
module='cashbook', type_='report')
Pool.register(
OpenCashBook,
RunCbReport,
module='cashbook', type_='wizard')