trytond-stock_location_prod.../__init__.py

26 lines
903 B
Python
Raw Normal View History

2015-10-23 14:17:36 +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 . import product_limit
2015-10-23 14:17:36 +02:00
def register():
Pool.register(
product_limit.ProductLimit,
product_limit.ShipmentOut,
product_limit.ShipmentOutReturn,
product_limit.Location,
product_limit.PrintProductLimitNoteParam,
product_limit.Configuration,
product_limit.ShipmentInternal,
2015-10-23 14:17:36 +02:00
module='stock_location_product_limit', type_='model')
2016-03-21 19:33:37 +01:00
Pool.register(
product_limit.PrintProductLimitNote,
2016-03-21 19:33:37 +01:00
module='stock_location_product_limit', type_='wizard')
Pool.register(
product_limit.ProductLimitNote,
product_limit.DeliveryNote,
product_limit.RestockingList,
product_limit.InternalReport,
module='stock_location_product_limit', type_='report')