trytond-stock_lot_cost_price/__init__.py
Javier Uribe 54374230c9 Initial commit.
This commit refs #6916.
2019-01-22 08:45:12 +01:00

12 lines
275 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 stock
def register():
Pool.register(
stock.Lot,
module='stock_lot_cost_price', type_='model')