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
|
2024-12-10 11:24:45 +00:00
|
|
|
from .bank import AccountNumber
|
2022-10-17 15:20:25 +00:00
|
|
|
from .party import PartyConfiguration, Party
|
2024-12-10 11:25:51 +00:00
|
|
|
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(
|
2024-12-10 11:24:45 +00:00
|
|
|
AccountNumber,
|
2024-12-09 12:24:39 +00:00
|
|
|
XRechnung,
|
2024-12-10 11:25:51 +00:00
|
|
|
Configuration,
|
|
|
|
BankEdocumentRel,
|
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')
|