trytond-sale_rule/__init__.py

17 lines
466 B
Python
Raw Normal View History

2014-11-24 11:35:34 +01:00
# This file is part of the sale_rule 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
2021-03-28 00:32:42 +01:00
from . import sale
from . import shop
2014-11-24 11:35:34 +01:00
def register():
Pool.register(
2021-03-28 00:32:42 +01:00
sale.Sale,
sale.SaleRule,
sale.SaleRuleAction,
sale.SaleRuleCondition,
sale.SaleLine,
shop.SaleShop,
2014-11-24 11:35:34 +01:00
module='sale_rule', type_='model')