edocument_xrechnung/__init__.py

23 lines
651 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
from .bank import AccountNumber
2024-12-11 09:31:19 +00:00
from .party import Party, PartyIdentifier
from .configuration import Configuration, BankEdocumentRel
2022-10-17 15:20:25 +00:00
2022-10-17 10:35:39 +00:00
def register():
Pool.register(
AccountNumber,
2024-12-09 12:24:39 +00:00
XRechnung,
Configuration,
BankEdocumentRel,
2024-12-05 14:36:07 +00:00
FacturX,
2022-10-17 15:20:25 +00:00
Party,
2024-12-11 09:31:19 +00:00
PartyIdentifier,
2022-10-17 10:35:39 +00:00
module='edocument_xrechnung', type_='model')