trytond-incoterm/__init__.py

14 lines
341 B
Python
Raw Normal View History

2016-02-25 11:13:06 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2017-05-02 23:22:25 +02:00
from . import incoterm
from . import party
2016-02-25 11:13:06 +01:00
def register():
Pool.register(
2017-05-02 23:22:25 +02:00
incoterm.Category,
incoterm.Incoterm,
party.Party,
2016-02-25 11:13:06 +01:00
module='incoterm', type_='model')