trytond-sale_product_stock_.../__init__.py

13 lines
379 B
Python

# This file is part of the sale_product_stock_shop 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 .sale import *
from .shop import *
def register():
Pool.register(
Sale,
SaleShop,
module='sale_product_stock_shop', type_='model')