trytond-stock_form/__init__.py

14 lines
409 B
Python
Raw Normal View History

2016-06-23 17:20:11 +02:00
# This file is part stock_form module for 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 .location import *
def register():
Pool.register(
Location,
module='stock_form', type_='model')
Pool.register(
# ProductByLocation,
module='stock_form', type_='wizard')