kategorie, verknüpfung zu kassenbuch, forms

This commit is contained in:
Frederik Jaeckel 2022-11-07 23:11:41 +01:00
parent 5bb6421692
commit c69b9c86d8
16 changed files with 561 additions and 0 deletions

View file

@ -4,7 +4,12 @@
# full copyright notices and license terms.
from trytond.pool import Pool
from .category import Category
from .book import CategoryCashbookRel, Cashbook
def register():
Pool.register(
Category,
Cashbook,
CategoryCashbookRel,
module='cashbook_bookcategory', type_='model')