blob: 0b6e8439ed4d3bf4e746ab2bbb3dbf768467616f [file] [log] [blame]
Anand Doshif5794f12014-03-03 15:05:28 +05301from frappe import _
2
3data = [
4 {
5 "label": _("Documents"),
6 "icon": "icon-star",
7 "items": [
8 {
9 "type": "doctype",
10 "name": "Support Ticket",
11 "description": _("Support queries from customers."),
12 },
13 {
14 "type": "doctype",
15 "name": "Customer Issue",
16 "description": _("Customer Issue against Serial No."),
17 },
18 {
19 "type": "doctype",
20 "name": "Maintenance Schedule",
21 "description": _("Plan for maintenance visits."),
22 },
23 {
24 "type": "doctype",
25 "name": "Maintenance Visit",
26 "description": _("Visit report for maintenance call."),
27 },
28 {
29 "type": "doctype",
30 "name": "Newsletter",
31 "description": _("Newsletters to contacts, leads."),
32 },
33 {
34 "type": "doctype",
35 "name": "Communication",
36 "description": _("Communication log."),
37 },
38 {
39 "type": "doctype",
40 "name": "Serial No",
41 "description": _("Single unit of an Item."),
42 },
43 ]
44 },
45 {
46 "label": _("Setup"),
47 "icon": "icon-cog",
48 "items": [
49 {
50 "type": "doctype",
Anand Doshi6b12b072014-03-03 16:05:00 +053051 "name": "Email Settings",
52 "label": _("Support Email Settings"),
Anand Doshif5794f12014-03-03 15:05:28 +053053 "description": _("Setup incoming server for support email id. (e.g. support@example.com)")
54 },
55 ]
56 },
57 {
58 "label": _("Standard Reports"),
59 "icon": "icon-list",
60 "items": [
61 {
62 "type": "page",
63 "name": "support-analytics",
64 "label": _("Support Analytics"),
65 "icon": "icon-bar-chart"
66 },
67 {
68 "type": "report",
69 "name": "Maintenance Schedules",
70 "is_query_report": True,
71 "doctype": "Maintenance Schedule"
72 },
73 ]
74 },
75]