trytond-product_qty/__init__.py

11 lines
298 B
Python
Raw Permalink Normal View History

2015-03-25 13:57:34 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-09-15 18:11:28 +02:00
from . import product
2015-03-25 13:57:34 +01:00
def register():
Pool.register(
2018-09-15 18:11:28 +02:00
product.Template,
product.Product,
2015-03-25 13:57:34 +01:00
module='product_qty', type_='model')