blob: 2ed2c5f9db3847a4ee1419beefb316374a4cfbef [file] [log] [blame]
Anand Doshif5794f12014-03-03 15:05:28 +05301from frappe import _
2
Anand Doshi08ef4672014-05-08 11:43:18 +05303def get_data():
4 return [
5 {
6 "label": _("Documents"),
7 "icon": "icon-star",
8 "items": [
9 {
10 "type": "doctype",
Rushabh Mehtabd9b62f2014-11-28 11:45:02 +053011 "name": "Issue",
Anand Doshi08ef4672014-05-08 11:43:18 +053012 "description": _("Support queries from customers."),
13 },
14 {
15 "type": "doctype",
16 "name": "Customer Issue",
17 "description": _("Customer Issue against Serial No."),
18 },
19 {
20 "type": "doctype",
21 "name": "Maintenance Schedule",
22 "description": _("Plan for maintenance visits."),
23 },
24 {
25 "type": "doctype",
26 "name": "Maintenance Visit",
27 "description": _("Visit report for maintenance call."),
28 },
29 {
30 "type": "doctype",
31 "name": "Newsletter",
32 "description": _("Newsletters to contacts, leads."),
33 },
34 {
35 "type": "doctype",
36 "name": "Communication",
37 "description": _("Communication log."),
38 },
39 {
40 "type": "doctype",
41 "name": "Serial No",
42 "description": _("Single unit of an Item."),
43 },
44 ]
45 },
46 {
47 "label": _("Setup"),
48 "icon": "icon-cog",
49 "items": [
50 {
51 "type": "doctype",
Rushabh Mehta5cdc8e52014-09-15 16:59:38 +053052 "name": "Email Account",
Anand Doshi08ef4672014-05-08 11:43:18 +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 ]