16 lines
452 B
Python
Executable File
16 lines
452 B
Python
Executable File
# This file is part of Tryton. 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 inventory
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
inventory.CreateInventoriesStart,
|
|
module='stock_inventory_location', type_='model')
|
|
Pool.register(
|
|
inventory.CreateInventories,
|
|
module='stock_inventory_location', type_='wizard')
|