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

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