trytond-stock_lot_expiry/__init__.py

13 lines
314 B
Python
Raw Normal View History

2014-06-04 11:04:04 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2013-10-16 13:46:10 +02:00
from trytond.pool import Pool
2018-02-02 13:13:15 +01:00
from . import stock
2013-10-16 13:46:10 +02:00
def register():
Pool.register(
2018-02-02 13:13:15 +01:00
stock.Lot,
stock.Location,
stock.Move,
2013-10-16 13:46:10 +02:00
module='stock_lot_expiry', type_='model')