trytond-product_special_price/__init__.py

16 lines
416 B
Python

# This file is part of product_special_price 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 . import shop
from . import product
def register():
Pool.register(
shop.SaleShop,
product.Template,
product.Product,
module='product_special_price', type_='model')