trytond-stock_lot_out_autoa.../__init__.py

17 lines
454 B
Python
Raw Normal View History

2014-11-07 14:45:53 +01:00
# This file is part stock_lot_out_autoassign module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2013-11-05 15:13:00 +01:00
from trytond.pool import Pool
from .configuration import *
2014-05-07 09:30:02 +02:00
from .move import *
from .shipment import *
2013-11-05 15:13:00 +01:00
def register():
Pool.register(
Configuration,
2014-05-07 09:30:02 +02:00
Move,
ShipmentIn,
ShipmentOut,
2013-11-05 15:13:00 +01:00
module='stock_lot_out_autoassign', type_='model')