trytond-stock_lot_quantity/__init__.py

17 lines
430 B
Python
Raw Normal View History

2014-07-07 16:51:34 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .stock import *
2016-06-29 10:00:05 +02:00
from .location import *
2014-07-07 16:51:34 +02:00
def register():
Pool.register(
Lot,
Move,
2016-06-29 10:00:05 +02:00
LotsByLocationStart,
2014-07-07 16:51:34 +02:00
module='stock_lot_quantity', type_='model')
2016-06-29 10:00:05 +02:00
Pool.register(
LotsByLocation,
module='stock_lot_quantity', type_='wizard')