trytond-stock_shipment_in_edi/__init__.py

14 lines
371 B
Python
Raw Normal View History

2019-10-01 10:55:01 +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
from . import shipment
def register():
Pool.register(
shipment.Cron,
shipment.Move,
shipment.ShipmentIn,
shipment.StockConfiguration,
module='stock_shipment_in_edi', type_='model')