trytond-product_variant_name/__init__.py

11 lines
275 B
Python

# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .product import *
def register():
Pool.register(
Product,
module='product_variant_name', type_='model')