2015-02-24 06:54:53 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-03-03 09:35:28 +00:00
|
|
|
from frappe import _
|
|
|
|
|
2014-05-08 06:13:18 +00:00
|
|
|
def get_data():
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
"label": _("Documents"),
|
|
|
|
"icon": "icon-star",
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2014-11-28 06:15:02 +00:00
|
|
|
"name": "Issue",
|
2014-05-08 06:13:18 +00:00
|
|
|
"description": _("Support queries from customers."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2015-02-17 05:15:50 +00:00
|
|
|
"name": "Warranty Claim",
|
|
|
|
"description": _("Warranty Claim against Serial No."),
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Maintenance Schedule",
|
|
|
|
"description": _("Plan for maintenance visits."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Maintenance Visit",
|
|
|
|
"description": _("Visit report for maintenance call."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Newsletter",
|
|
|
|
"description": _("Newsletters to contacts, leads."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Communication",
|
|
|
|
"description": _("Communication log."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Serial No",
|
|
|
|
"description": _("Single unit of an Item."),
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Setup"),
|
|
|
|
"icon": "icon-cog",
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2014-09-15 11:29:38 +00:00
|
|
|
"name": "Email Account",
|
2014-05-08 06:13:18 +00:00
|
|
|
"description": _("Setup incoming server for support email id. (e.g. support@example.com)")
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Standard Reports"),
|
|
|
|
"icon": "icon-list",
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "page",
|
|
|
|
"name": "support-analytics",
|
|
|
|
"label": _("Support Analytics"),
|
|
|
|
"icon": "icon-bar-chart"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Maintenance Schedules",
|
|
|
|
"is_query_report": True,
|
|
|
|
"doctype": "Maintenance Schedule"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|