trytond-product_price_list_.../__init__.py
2014-08-01 16:25:35 +02:00

14 lines
393 B
Python

# This file is part of the product_price_list_manufacturer 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 .price_list import *
def register():
Pool.register(
PriceList,
PriceListLine,
module='product_price_list_manufacturer', type_='model')