2024-12-19 10:15:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# This file is part of the document-incoming-invoice-xml-module
|
|
|
|
# from m-ds for Tryton. The COPYRIGHT file at the top level of
|
|
|
|
# this repository contains the full copyright notices and license terms.
|
|
|
|
|
|
|
|
from trytond.pool import Pool
|
2025-01-06 16:52:48 +00:00
|
|
|
from .document import Incoming
|
2025-01-07 14:32:19 +00:00
|
|
|
from .configuration import Configuration
|
2024-12-19 10:15:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
2025-01-07 14:32:19 +00:00
|
|
|
Configuration,
|
2025-01-06 16:52:48 +00:00
|
|
|
Incoming,
|
2024-12-19 10:15:10 +00:00
|
|
|
module='document_incoming_invoice_xml', type_='model')
|