trytond-product_price_by_li.../__init__.py

16 lines
524 B
Python
Raw Normal View History

2014-11-07 14:30:59 +01:00
# This file is part product_price_by_list_price module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2013-11-05 10:50:15 +01:00
from trytond.pool import Pool
2018-02-02 16:46:43 +01:00
from . import product
2013-11-05 10:50:15 +01:00
def register():
Pool.register(
2018-02-02 16:46:43 +01:00
product.ProductPriceByPriceListStart,
product.Product,
2013-11-05 10:50:15 +01:00
module='product_price_by_list_price', type_='model')
Pool.register(
2018-02-02 16:46:43 +01:00
product.ProductPriceByPriceList,
2013-11-05 10:50:15 +01:00
module='product_price_by_list_price', type_='wizard')