trytond-product_oneclick_esale/__init__.py

14 lines
499 B
Python
Raw Normal View History

2014-11-07 14:30:11 +01:00
# This file is part of of product_oneclick_esale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2014-09-29 11:12:57 +02:00
from trytond.pool import Pool
2018-08-31 08:51:52 +02:00
from . import product_oneclick
2014-09-29 11:12:57 +02:00
def register():
Pool.register(
2018-08-31 08:51:52 +02:00
product_oneclick.ProductOneClickView,
2014-09-29 11:12:57 +02:00
module='product_oneclick_esale', type_='model')
Pool.register(
2018-08-31 08:51:52 +02:00
product_oneclick.ProductOneClick,
2014-09-29 11:12:57 +02:00
module='product_oneclick_esale', type_='wizard')