fix(rename): Help Desk => Support
This commit is contained in:
parent
c0435f21c2
commit
43257c8cc3
@ -81,9 +81,9 @@ def get_data():
|
|||||||
"description": "Sales pipeline, leads, opportunities and customers."
|
"description": "Sales pipeline, leads, opportunities and customers."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"module_name": "Help Desk",
|
"module_name": "Support",
|
||||||
"category": "Modules",
|
"category": "Modules",
|
||||||
"label": _("Help Desk"),
|
"label": _("Support"),
|
||||||
"color": "#1abc9c",
|
"color": "#1abc9c",
|
||||||
"icon": "fa fa-check-square-o",
|
"icon": "fa fa-check-square-o",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@ -1,82 +0,0 @@
|
|||||||
from __future__ import unicode_literals
|
|
||||||
from frappe import _
|
|
||||||
|
|
||||||
def get_data():
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
"label": _("Issues"),
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Issue",
|
|
||||||
"description": _("Support queries from customers."),
|
|
||||||
"onboard": 1,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Communication",
|
|
||||||
"description": _("Communication log."),
|
|
||||||
"onboard": 1,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Warranty"),
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Warranty Claim",
|
|
||||||
"description": _("Warranty Claim against Serial No."),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Serial No",
|
|
||||||
"description": _("Single unit of an Item."),
|
|
||||||
},
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Service Level Agreement"),
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Employee Group",
|
|
||||||
"description": _("Support Team."),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Service Level",
|
|
||||||
"description": _("Service Level."),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Service Level Agreement",
|
|
||||||
"description": _("Service Level Agreement."),
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Reports"),
|
|
||||||
"icon": "fa fa-list",
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"type": "page",
|
|
||||||
"name": "support-analytics",
|
|
||||||
"label": _("Support Analytics"),
|
|
||||||
"icon": "fa fa-bar-chart"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "report",
|
|
||||||
"name": "Minutes to First Response for Issues",
|
|
||||||
"doctype": "Issue",
|
|
||||||
"is_query_report": True
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "report",
|
|
||||||
"name": "Support Hours",
|
|
||||||
"doctype": "Issue",
|
|
||||||
"is_query_report": True
|
|
||||||
},
|
|
||||||
]
|
|
||||||
},
|
|
||||||
]
|
|
||||||
@ -10,11 +10,13 @@ def get_data():
|
|||||||
"type": "doctype",
|
"type": "doctype",
|
||||||
"name": "Issue",
|
"name": "Issue",
|
||||||
"description": _("Support queries from customers."),
|
"description": _("Support queries from customers."),
|
||||||
|
"onboard": 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "doctype",
|
"type": "doctype",
|
||||||
"name": "Communication",
|
"name": "Communication",
|
||||||
"description": _("Communication log."),
|
"description": _("Communication log."),
|
||||||
|
"onboard": 1,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -33,6 +35,26 @@ def get_data():
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": _("Service Level Agreement"),
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"type": "doctype",
|
||||||
|
"name": "Employee Group",
|
||||||
|
"description": _("Support Team."),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "doctype",
|
||||||
|
"name": "Service Level",
|
||||||
|
"description": _("Service Level."),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "doctype",
|
||||||
|
"name": "Service Level Agreement",
|
||||||
|
"description": _("Service Level Agreement."),
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": _("Reports"),
|
"label": _("Reports"),
|
||||||
"icon": "fa fa-list",
|
"icon": "fa fa-list",
|
||||||
@ -57,24 +79,4 @@ def get_data():
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"label": _("Service Level Agreement"),
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Employee Group",
|
|
||||||
"description": _("Support Team."),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Service Level",
|
|
||||||
"description": _("Service Level."),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "doctype",
|
|
||||||
"name": "Service Level Agreement",
|
|
||||||
"description": _("Service Level Agreement."),
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
Loading…
x
Reference in New Issue
Block a user