trytond-stock_external_rece.../__init__.py

10 lines
299 B
Python
Raw Normal View History

2015-01-19 15:28:34 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-10-29 00:59:41 +01:00
from . import stock
2015-01-19 15:28:34 +01:00
def register():
Pool.register(
2018-10-29 00:59:41 +01:00
stock.ExternalReceptionLine,
2015-01-19 15:28:34 +01:00
module='stock_external_reception_lot', type_='model')