edocument_xrechnung/__init__.py

18 lines
494 B
Python
Raw Normal View History

2022-10-17 10:35:39 +00:00
# -*- coding: utf-8 -*-
2023-06-30 09:36:17 +00:00
# This file is part of the edocument-module for Tryton from m-ds.de.
2022-10-17 10:35:39 +00:00
# The COPYRIGHT file at the top level of this repository contains the
# full copyright notices and license terms.
from trytond.pool import Pool
2024-12-09 12:24:39 +00:00
from .edocument import XRechnung, FacturX
2022-10-17 15:20:25 +00:00
from .party import PartyConfiguration, Party
2022-10-17 10:35:39 +00:00
def register():
Pool.register(
2024-12-09 12:24:39 +00:00
XRechnung,
2024-12-05 14:36:07 +00:00
FacturX,
2022-10-17 15:20:25 +00:00
Party,
PartyConfiguration,
2022-10-17 10:35:39 +00:00
module='edocument_xrechnung', type_='model')