trytond-galatea_esale/__init__.py

25 lines
677 B
Python
Raw Permalink 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 . import galatea
from . import menu
from . import sale
from . import product
from . import payment_type
2014-05-27 09:46:00 +02:00
def register():
Pool.register(
menu.CatalogMenu,
galatea.GalateaWebSite,
galatea.GalateaUser,
payment_type.PaymentType,
sale.Sale,
sale.SaleLine,
product.ProductCategoryGalateaWebsite,
product.Category,
product.Template,
product.Product,
2014-05-27 09:46:00 +02:00
module='galatea_esale', type_='model')