trytond-galatea_esale/__init__.py

23 lines
575 B
Python
Raw Normal View History

2014-05-27 09:46:00 +02: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.
from trytond.pool import Pool
from .galatea import *
2014-10-06 09:22:02 +02:00
from .menu import *
2014-06-25 16:40:44 +02:00
from .sale_cart 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,
2014-06-25 16:40:44 +02:00
SaleCart,
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')