2022-10-18 10:05:31 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-06-30 09:21:48 +00:00
|
|
|
# This file is part of the account-invoice-xrechnung-module
|
|
|
|
# from m-ds for Tryton. The COPYRIGHT file at the top level of
|
|
|
|
# this repository contains the full copyright notices and license terms.
|
2022-10-18 10:05:31 +00:00
|
|
|
|
|
|
|
from trytond.pool import Pool
|
2022-10-19 15:47:47 +00:00
|
|
|
from .wizard_runreport import RunXRechnungReport, RunXRechnungReportStart
|
|
|
|
from .invoice import InvoiceLine
|
2022-10-20 12:43:58 +00:00
|
|
|
from .xreport import XReport
|
2024-12-05 16:31:45 +00:00
|
|
|
from .configuration import ConfigurationXRechnungexport, Configuration
|
2022-10-18 10:05:31 +00:00
|
|
|
|
2023-06-30 09:21:48 +00:00
|
|
|
|
2022-10-18 15:33:31 +00:00
|
|
|
def register():
|
2022-10-19 15:47:47 +00:00
|
|
|
Pool.register(
|
2024-12-05 16:31:45 +00:00
|
|
|
Configuration,
|
|
|
|
ConfigurationXRechnungexport,
|
2022-10-19 15:47:47 +00:00
|
|
|
InvoiceLine,
|
|
|
|
RunXRechnungReportStart,
|
|
|
|
module='account_invoice_xrechnung', type_='model')
|
2022-10-18 15:33:31 +00:00
|
|
|
Pool.register(
|
|
|
|
RunXRechnungReport,
|
|
|
|
module='account_invoice_xrechnung', type_='wizard')
|
2022-10-20 12:43:58 +00:00
|
|
|
Pool.register(
|
|
|
|
XReport,
|
|
|
|
module='account_invoice_xrechnung', type_='report')
|