trytond-production_package/__init__.py

14 lines
349 B
Python
Raw Permalink Normal View History

2014-05-07 07:59:12 +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
2018-10-28 00:48:32 +02:00
from . import stock
2014-05-07 07:59:12 +02:00
def register():
Pool.register(
2018-10-28 00:48:32 +02:00
stock.Package,
stock.Move,
stock.Production,
stock.ShipmentOut,
2014-05-07 07:59:12 +02:00
module='production_package', type_='model')