1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/worksheet/__manifest__.py
2024-12-10 09:04:09 +07:00

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',
}