trytond-galatea_esale/__init__.py

24 lines
586 B
Python
Raw Normal View History

2014-11-07 14:24:20 +01:00
# This file is part galatea_esale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2014-05-27 09:46:00 +02:00
from trytond.pool import Pool
from .galatea import *
2014-10-06 09:22:02 +02:00
from .menu import *
2015-11-19 19:01:05 +01:00
from .sale import *
2014-05-27 09:46:00 +02:00
from .shop import *
2014-06-05 16:01:31 +02:00
from .product import *
2014-07-24 17:29:25 +02:00
from .payment_type import *
2014-05-27 09:46:00 +02:00
def register():
Pool.register(
2014-10-06 09:22:02 +02:00
CatalogMenu,
2014-05-27 09:46:00 +02:00
GalateaWebSite,
2014-06-05 12:10:58 +02:00
GalateaUser,
2014-07-24 17:29:25 +02:00
PaymentType,
2015-11-19 19:01:05 +01:00
Sale,
2016-02-23 17:59:35 +01:00
SaleLine,
2014-05-27 09:46:00 +02:00
SaleShop,
2014-06-05 16:01:31 +02:00
Template,
2014-09-22 15:33:12 +02:00
Product,
2014-05-27 09:46:00 +02:00
module='galatea_esale', type_='model')