1
0
Fork 0
mirror of synced 2023-12-14 09:32:52 +01:00
trytond-stock_lot_sequence/__init__.py
2023-01-13 11:27:07 +01:00

19 lines
517 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 product
from . import stock
def register():
Pool.register(
product.Configuration,
product.ConfigurationDefaultLotSequence,
product.CategoryCompany,
product.Category,
product.TemplateCompany,
product.Template,
product.Product,
stock.Lot,
module='stock_lot_sequence', type_='model')