trytond-stock_external_rece.../__init__.py
Albert Cervera i Areny 6dc7610ec8 Upgrade to Tryton 4.8
2018-10-29 00:54:10 +01:00

13 lines
444 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 shipment
def register():
Pool.register(
shipment.Configuration,
shipment.ConfigurationSequence,
shipment.ExternalReception,
shipment.ExternalReceptionLine,
shipment.ShipmentExternal,
module='stock_external_reception', type_='model')