2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
|
|
'name': 'Customer Rating',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '1.0',
|
|
|
|
'category': 'Productivity',
|
|
|
|
'description': """
|
|
|
|
This module allows a customer to give rating.
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'http://flectra.com',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': [
|
|
|
|
'mail',
|
|
|
|
],
|
|
|
|
'data': [
|
|
|
|
'views/rating_view.xml',
|
|
|
|
'views/rating_template.xml',
|
|
|
|
'security/ir.model.access.csv'
|
|
|
|
],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': False,
|
|
|
|
}
|