forked from Mapan/odoo17e
29 lines
696 B
Python
29 lines
696 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Worksheet',
|
|
'category': 'Hidden',
|
|
'summary': 'Create customizable worksheet',
|
|
'description': """
|
|
Create customizable worksheet
|
|
================================
|
|
|
|
""",
|
|
'depends': ['web_studio'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/worksheet_security.xml',
|
|
'views/worksheet_template_view.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'worksheet/static/src/**/*',
|
|
],
|
|
'web.qunit_suite_tests': [
|
|
'worksheet/static/tests/*.js',
|
|
],
|
|
},
|
|
'license': 'OEEL-1',
|
|
}
|