trytond-product_purchase_se.../__init__.py

15 lines
438 B
Python
Raw Normal View History

2013-03-21 15:25:00 +01:00
#This file is part product_purchase_sequence module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
2013-03-21 15:25:00 +01:00
from trytond.pool import Pool
from .product import *
from .configuration import *
def register():
Pool.register(
ProductConfiguration,
ProductConfigurationCompany,
2013-03-21 15:25:00 +01:00
Product,
module='product_purchase_sequence', type_='model')