account_invoice_xrechnung/__init__.py

22 lines
688 B
Python
Raw Normal View History

2022-10-18 12:05:31 +02:00
# -*- coding: utf-8 -*-
# This file is part of Tryton.
# The COPYRIGHT file at the top level of this repository contains the
# full copyright notices and license terms.
from trytond.pool import Pool
2022-10-19 17:47:47 +02:00
from .wizard_runreport import RunXRechnungReport, RunXRechnungReportStart
from .invoice import InvoiceLine
2022-10-20 14:43:58 +02:00
from .xreport import XReport
2022-10-18 12:05:31 +02:00
2022-10-18 17:33:31 +02:00
def register():
2022-10-19 17:47:47 +02:00
Pool.register(
InvoiceLine,
RunXRechnungReportStart,
module='account_invoice_xrechnung', type_='model')
2022-10-18 17:33:31 +02:00
Pool.register(
RunXRechnungReport,
module='account_invoice_xrechnung', type_='wizard')
2022-10-20 14:43:58 +02:00
Pool.register(
XReport,
module='account_invoice_xrechnung', type_='report')