trytond-sale_shop_trade_info/__init__.py

10 lines
272 B
Python
Raw Permalink Normal View History

2013-12-27 09:24:29 +01:00
# 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-27 23:44:33 +01:00
from . import shop
2013-12-27 09:24:29 +01:00
def register():
Pool.register(
2021-03-27 23:44:33 +01:00
shop.Shop,
2013-12-27 09:24:29 +01:00
module='sale_shop_trade_info', type_='model')