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
|
2022-10-17 17:20:25 +02:00
|
|
|
from .edocument import Invoice
|
|
|
|
from .party import PartyConfiguration, Party
|
|
|
|
|
2022-10-17 12:35:39 +02:00
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
2022-10-17 17:20:25 +02:00
|
|
|
Invoice,
|
|
|
|
Party,
|
|
|
|
PartyConfiguration,
|
2022-10-17 12:35:39 +02:00
|
|
|
module='edocument_xrechnung', type_='model')
|