uiview erstellen+test, context-view begonnen

This commit is contained in:
Frederik Jaeckel 2022-11-02 23:07:37 +01:00
parent 5809a7caba
commit 17ddfa12ca
7 changed files with 135 additions and 40 deletions

View file

@ -7,6 +7,7 @@ from trytond.pool import Pool
from .evaluation import Evaluation, EvaluationCashbookRel, \
EvaluationTypeRel, EvaluationCurrencyRel
from .currency import Currency
from .evaluation_context import EvaluationContext
def register():
Pool.register(
@ -15,4 +16,5 @@ def register():
EvaluationCashbookRel,
EvaluationTypeRel,
EvaluationCurrencyRel,
EvaluationContext,
module='cashbook_report', type_='model')