trytond-stock_origin/__init__.py
C?dric Krier 42ced4f6cc Fix style
2018-01-24 16:04:20 +01:00

14 lines
391 B
Python

# This file is part stock_origin module for Tryton.
# 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.Move,
shipment.ShipmentOut,
shipment.ShipmentOutReturn,
module='stock_origin', type_='model')