trytond-edocument_edifact/__init__.py

25 lines
681 B
Python

# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool
from .edocument import Message
from .stock import Configuration, UnitLoad
from .party import PartyIdentifier, Address
from .product import Template
from .incoterm import Rule
def register():
Pool.register(
Message,
PartyIdentifier,
Configuration,
Rule,
Template,
Address,
UnitLoad,
module='edocument_edifact', type_='model')
Pool.register(
module='edocument_edifact', type_='wizard')
Pool.register(
module='edocument_edifact', type_='report')