23 lines
727 B
Python
23 lines
727 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details
|
|
{
|
|
'name': "Helpdesk FSM",
|
|
'summary': "Allow generating fsm tasks from ticket",
|
|
'description': """
|
|
Convert helpdesk tickets to field service tasks.
|
|
""",
|
|
'category': 'Services/Helpdesk',
|
|
'depends': ['project_helpdesk', 'industry_fsm'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/mail_message_subtype_data.xml',
|
|
'views/helpdesk_ticket_views.xml',
|
|
'views/helpdesk_team_views.xml',
|
|
'views/project_sharing_views.xml',
|
|
'wizard/create_task_views.xml',
|
|
],
|
|
'demo': ['data/helpdesk_fsm_demo.xml'],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|