cashbooks, types, currenciews - verknüpfung+löschen+test

This commit is contained in:
Frederik Jaeckel 2022-10-29 23:05:27 +02:00
parent 085228e047
commit 01470569e7
9 changed files with 429 additions and 22 deletions

View file

@ -4,10 +4,13 @@
# full copyright notices and license terms.
from trytond.pool import Pool
from .evaluation import Evaluation, EvaluationCashbookRel
from .evaluation import Evaluation, EvaluationCashbookRel, \
EvaluationTypeRel, EvaluationCurrencyRel
def register():
Pool.register(
Evaluation,
EvaluationCashbookRel,
EvaluationTypeRel,
EvaluationCurrencyRel,
module='cashbook_report', type_='model')