35 lines
893 B
Python
35 lines
893 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Customer Rating',
|
|
'version': '1.1',
|
|
'category': 'Productivity',
|
|
'description': """
|
|
This module allows a customer to give rating.
|
|
""",
|
|
'depends': [
|
|
'mail',
|
|
],
|
|
'data': [
|
|
'views/rating_rating_views.xml',
|
|
'views/rating_templates.xml',
|
|
'views/mail_message_views.xml',
|
|
'security/ir.model.access.csv'
|
|
],
|
|
'installable': True,
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'rating/static/src/**/*',
|
|
('remove', 'rating/static/src/scss/rating_templates.scss'),
|
|
],
|
|
'web.assets_frontend': [
|
|
'rating/static/src/scss/rating_templates.scss',
|
|
],
|
|
'web.tests_assets': [
|
|
'rating/static/tests/**/*',
|
|
],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|