forked from Mapan/odoo17e
22 lines
619 B
Python
22 lines
619 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': "Spreadsheet CRM Templates",
|
|
'version': '1.0',
|
|
'category': 'Productivity/Documents',
|
|
'summary': 'Spreadsheet CRM templates',
|
|
'description': 'Spreadsheet CRM templates',
|
|
'depends': ['documents_spreadsheet', 'crm_enterprise'],
|
|
'data': [
|
|
'data/spreadsheet_template_data.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'web.assets_tests': [
|
|
'documents_spreadsheet_crm/static/**/*',
|
|
],
|
|
}
|
|
}
|