xml erzeugen bei 40%

This commit is contained in:
Frederik Jaeckel 2022-10-17 17:20:25 +02:00
parent baf871e506
commit 265e38c24f
12 changed files with 357 additions and 1 deletions

View file

@ -4,7 +4,13 @@
# full copyright notices and license terms.
from trytond.pool import Pool
from .edocument import Invoice
from .party import PartyConfiguration, Party
def register():
Pool.register(
Invoice,
Party,
PartyConfiguration,
module='edocument_xrechnung', type_='model')