exprt wizard begonnen

This commit is contained in:
Frederik Jaeckel 2022-10-19 17:47:47 +02:00
parent 7b160d84af
commit 00dd70e877
7 changed files with 142 additions and 8 deletions

View file

@ -4,9 +4,14 @@
# full copyright notices and license terms.
from trytond.pool import Pool
from .wizard_runreport import RunXRechnungReport
from .wizard_runreport import RunXRechnungReport, RunXRechnungReportStart
from .invoice import InvoiceLine
def register():
Pool.register(
InvoiceLine,
RunXRechnungReportStart,
module='account_invoice_xrechnung', type_='model')
Pool.register(
RunXRechnungReport,
module='account_invoice_xrechnung', type_='wizard')