trytond-stock_lot_jreport/__init__.py
Jes?s Mart?n (NaN?tic) jesus 8213e09e8d Initial release
2016-05-12 12:26:18 +02:00

14 lines
356 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 .stock import *
def register():
Pool.register(
Lot,
module='stock_lot_jreport', type_='model')
Pool.register(
LotReport,
module='stock_lot_jreport', type_='report')