mirror of
https://gitlab.com/datalifeit/trytond-stock_lot_location_quantity
synced 2023-12-14 05:52:55 +01:00
14 lines
No EOL
349 B
Python
14 lines
No EOL
349 B
Python
from trytond.pool import Pool
|
|
from .stock import *
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
Lot,
|
|
LotLocationQuantity,
|
|
LotByLocationStart,
|
|
LotByLocationOpen,
|
|
module='stock_lot_location_quantity', type_='model')
|
|
Pool.register(
|
|
LotByLocation,
|
|
module='stock_lot_location_quantity', type_='wizard') |