blob: 09143201f846701bb063446bdeb8357c5a4ccd6f [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 Doshie30511d2014-03-03 20:32:20 +053051 "name": "Support Email Settings",
Anand Doshif5794f12014-03-03 15:05:28 +053052 "description": _("Setup incoming server for support email id. (e.g. support@example.com)")
53 },
54 ]
55 },
56 {
57 "label": _("Standard Reports"),
58 "icon": "icon-list",
59 "items": [
60 {
61 "type": "page",
62 "name": "support-analytics",
63 "label": _("Support Analytics"),
64 "icon": "icon-bar-chart"
65 },
66 {
67 "type": "report",
68 "name": "Maintenance Schedules",
69 "is_query_report": True,
70 "doctype": "Maintenance Schedule"
71 },
72 ]
73 },
74]