trytond-stock_shipment_in_edi/__init__.py

16 lines
526 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 . import edi_shipment
def register():
Pool.register(
edi_shipment.Cron,
edi_shipment.SupplierEdi,
edi_shipment.EdiShipmentReference,
edi_shipment.EdiShipmentInLine,
edi_shipment.EdiShipmentIn,
edi_shipment.EdiShipmentInLineQty,
edi_shipment.StockConfiguration,
module='stock_shipment_in_edi', type_='model')