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
Raw Normal View History

2014-06-04 11:32:58 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2013-10-22 17:09:34 +02:00
from trytond.pool import Pool
from .product import *
from .stock import *
2013-10-22 17:09:34 +02:00
def register():
Pool.register(
CategoryCompany,
Category,
TemplateCompany,
Template,
2013-10-22 17:09:34 +02:00
CompanyConfiguration,
Configuration,
Lot,
module='stock_lot_sequence', type_='model')