blob: 8cc30a5f1f5542940cd162b25994db6d681421a4 [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",
Anand Doshi6b12b072014-03-03 16:05:00 +053010 "name": "Task",
Anand Doshif5794f12014-03-03 15:05:28 +053011 "description": _("Project activity / task."),
12 },
13 {
14 "type": "doctype",
Anand Doshi6b12b072014-03-03 16:05:00 +053015 "name": "Project",
Anand Doshif5794f12014-03-03 15:05:28 +053016 "description": _("Project master."),
17 },
18 {
19 "type": "doctype",
Anand Doshi6b12b072014-03-03 16:05:00 +053020 "name": "Time Log",
Anand Doshif5794f12014-03-03 15:05:28 +053021 "description": _("Time Log for tasks."),
22 },
23 {
24 "type": "doctype",
Anand Doshi6b12b072014-03-03 16:05:00 +053025 "name": "Time Log Batch",
Anand Doshif5794f12014-03-03 15:05:28 +053026 "description": _("Batch Time Logs for billing."),
27 },
28 {
29 "type": "doctype",
30 "name": "Activity Type",
31 "description": _("Types of activities for Time Sheets"),
32 },
33 ]
34 },
35 {
36 "label": _("Tools"),
37 "icon": "icon-wrench",
38 "items": [
39 {
40 "type": "report",
41 "route": "Gantt/Task",
Anand Doshi6b12b072014-03-03 16:05:00 +053042 "doctype": "Task",
Anand Doshif5794f12014-03-03 15:05:28 +053043 "name": "Gantt Chart",
44 "description": _("Gantt chart of all tasks.")
45 },
46 ]
47 },
48 {
49 "label": _("Standard Reports"),
50 "icon": "icon-list",
51 "items": [
52 {
53 "type": "report",
54 "is_query_report": True,
55 "name": "Daily Time Log Summary",
56 "doctype": "Time Log"
57 },
58 {
59 "type": "report",
60 "is_query_report": True,
61 "name": "Project wise Stock Tracking",
62 "doctype": "Project"
63 },
64 ]
65 },
66]