2022-10-17 12:35:39 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-06-30 11:36:17 +02:00
|
|
|
# This file is part of the edocument-module for Tryton from m-ds.de.
|
2022-10-17 12:35:39 +02: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 13:24:39 +01:00
|
|
|
from .edocument import XRechnung, FacturX
|
2024-12-10 12:24:45 +01:00
|
|
|
from .bank import AccountNumber
|
2022-10-17 17:20:25 +02:00
|
|
|
from .party import PartyConfiguration, Party
|
2024-12-10 12:25:51 +01:00
|
|
|
from .configuration import Configuration, BankEdocumentRel
|
2022-10-17 17:20:25 +02:00
|
|
|
|
2022-10-17 12:35:39 +02:00
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
2024-12-10 12:24:45 +01:00
|
|
|
AccountNumber,
|
2024-12-09 13:24:39 +01:00
|
|
|
XRechnung,
|
2024-12-10 12:25:51 +01:00
|
|
|
Configuration,
|
|
|
|
BankEdocumentRel,
|
2024-12-05 15:36:07 +01:00
|
|
|
FacturX,
|
2022-10-17 17:20:25 +02:00
|
|
|
Party,
|
|
|
|
PartyConfiguration,
|
2022-10-17 12:35:39 +02:00
|
|
|
module='edocument_xrechnung', type_='model')
|