trytond-sale_product_customer/__init__.py
Maxime Richez 6827b3b0fc Add sale_product_customer module
issue8133
review46791002
2019-03-30 15:51:15 +01:00

22 lines
585 B
Python

# This file is part of 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 product
from . import sale
__all__ = ['register']
def register():
Pool.register(
product.Template,
product.Product,
product.ProductCustomer,
sale.Line,
module='sale_product_customer', type_='model')
Pool.register(
module='sale_product_customer', type_='wizard')
Pool.register(
module='sale_product_customer', type_='report')