trytond-stock_second_uom/__init__.py

29 lines
666 B
Python
Raw Normal View History

2015-06-08 16:37:41 +02:00
# 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 *
from .sale import *
from .purchase import *
2015-06-08 16:37:41 +02:00
2015-06-08 16:37:41 +02:00
def register():
Pool.register(
Template,
Product,
Lot,
Move,
ShipmentIn,
ShipmentOut,
ShipmentOutReturn,
PeriodCache,
PeriodCacheLot,
Inventory,
InventoryLine,
SaleLine,
PurchaseLine,
2015-06-08 16:37:41 +02:00
module='stock_second_uom', type_='model')
Pool.register(
ReturnSale,
module='stock_second_uom', type_='wizard')