2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Customer Portal',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'summary': 'Customer Portal',
|
|
|
|
'sequence': '9000',
|
|
|
|
'category': 'Hidden',
|
|
|
|
'description': """
|
|
|
|
This module adds required base code for a fully integrated customer portal.
|
|
|
|
It contains the base controller class and base templates. Business addons
|
|
|
|
will add their specific templates and controllers to extend the customer
|
|
|
|
portal.
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
This module contains most code coming from flectra v10 website_portal. Purpose
|
2018-01-16 06:58:15 +01:00
|
|
|
of this module is to allow the display of a customer portal without having
|
|
|
|
a dependency towards website edition and customization capabilities.""",
|
|
|
|
'depends': ['http_routing', 'mail'],
|
|
|
|
'data': [
|
|
|
|
'data/portal_data.xml',
|
|
|
|
'views/assets.xml',
|
|
|
|
'views/portal_templates.xml',
|
|
|
|
'wizard/portal_wizard_views.xml',
|
|
|
|
],
|
|
|
|
'qweb': [
|
|
|
|
'static/src/xml/portal_chatter.xml',
|
|
|
|
'static/src/xml/portal_signature.xml',
|
|
|
|
],
|
|
|
|
}
|