forked from Mapan/odoo17e
17 lines
526 B
Python
17 lines
526 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Helpdesk Merge action',
|
|
'version': '1.0',
|
|
'category': 'Productivity/Data Cleaning',
|
|
'summary': 'Add Merge action in contextual menu of helpdesk ticket model.',
|
|
'description': """Add Merge action in contextual menu of helpdesk ticket model.""",
|
|
'depends': ['data_merge', 'helpdesk'],
|
|
'data': [
|
|
'data/ir_model_data.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|