trytond-stock_lot_deactivat.../__init__.py
2019-04-26 13:48:08 +02:00

15 lines
353 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 . import ir
from . import stock
def register():
Pool.register(
ir.Cron,
stock.Lot,
stock.Move,
stock.Period,
module='stock_lot_deactivatable', type_='model')