trytond-stock_lot_out_autoa.../__init__.py

17 lines
454 B
Python

# 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.
from trytond.pool import Pool
from .configuration import *
from .move import *
from .shipment import *
def register():
Pool.register(
Configuration,
Move,
ShipmentIn,
ShipmentOut,
module='stock_lot_out_autoassign', type_='model')