forked from Mapan/odoo17e
19 lines
498 B
Python
19 lines
498 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Helpdesk Repair',
|
|
'category': 'Services/Helpdesk',
|
|
'summary': 'Project, Tasks, Repair',
|
|
'depends': ['helpdesk_stock', 'repair'],
|
|
'description': """
|
|
Repair Products from helpdesk tickets
|
|
""",
|
|
'data': [
|
|
'views/repair_views.xml',
|
|
'views/helpdesk_ticket_views.xml',
|
|
],
|
|
'demo': ['data/helpdesk_repair_demo.xml'],
|
|
'license': 'OEEL-1',
|
|
}
|