forked from Mapan/odoo17e
23 lines
691 B
Python
23 lines
691 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Opportunity to Rental',
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'description': """
|
|
This module adds a shortcut on one or several opportunity cases in the CRM.
|
|
===========================================================================
|
|
|
|
This shortcut allows you to generate a rental order based on the selected case.
|
|
""",
|
|
'depends': ['sale_renting', 'sale_crm'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/crm_lead_views.xml',
|
|
'wizard/crm_lead_rental_views.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|