16 lines
446 B
Python
16 lines
446 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
{
|
||
|
'name': "Spreadsheet dashboard for time sheets",
|
||
|
'version': '1.0',
|
||
|
'category': 'Hidden',
|
||
|
'summary': 'Spreadsheet',
|
||
|
'description': 'Spreadsheet',
|
||
|
'depends': ['spreadsheet_dashboard', 'sale_timesheet'],
|
||
|
'data': [
|
||
|
"data/dashboards.xml",
|
||
|
],
|
||
|
'installable': True,
|
||
|
'auto_install': ['sale_timesheet'],
|
||
|
'license': 'LGPL-3',
|
||
|
}
|