account_invoice_xrechnung/__init__.py

13 lines
373 B
Python
Raw Normal View History

2022-10-18 10:05:31 +00: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-18 15:33:31 +00:00
from .wizard_runreport import RunXRechnungReport
2022-10-18 10:05:31 +00:00
2022-10-18 15:33:31 +00:00
def register():
Pool.register(
RunXRechnungReport,
module='account_invoice_xrechnung', type_='wizard')