trytond-stock_location_dock/__init__.py
Sergio Morillo a754295224 Add Shipment in return.
This commit refs #4650
2018-05-21 15:45:44 +02:00

19 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 .stock import (Location, LocationDock, ShipmentIn,
ShipmentOut, ShipmentOutReturn, ShipmentInternal,
ShipmentInReturn)
def register():
Pool.register(
LocationDock,
Location,
ShipmentIn,
ShipmentOut,
ShipmentOutReturn,
ShipmentInternal,
ShipmentInReturn,
module='stock_location_dock', type_='model')