blob: 3deaeba91e7ab5f9436752538806878488c92a7b [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Anand Doshif5794f12014-03-03 15:05:28 +05302from frappe import _
3
Anand Doshi08ef4672014-05-08 11:43:18 +05304def get_data():
5 return [
6 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +05307 "label": _("Projects"),
Anand Doshi08ef4672014-05-08 11:43:18 +05308 "icon": "icon-star",
9 "items": [
10 {
11 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053012 "name": "Project",
13 "description": _("Project master."),
14 },
15 {
16 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053017 "name": "Task",
18 "description": _("Project activity / task."),
19 },
20 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053021 "type": "report",
22 "route": "Gantt/Task",
23 "doctype": "Task",
24 "name": "Gantt Chart",
25 "description": _("Gantt chart of all tasks.")
Anand Doshi08ef4672014-05-08 11:43:18 +053026 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053027 ]
28 },
29 {
30 "label": _("Time Tracking"),
31 "items": [
Anand Doshi08ef4672014-05-08 11:43:18 +053032 {
33 "type": "doctype",
34 "name": "Time Log",
35 "description": _("Time Log for tasks."),
36 },
37 {
38 "type": "doctype",
39 "name": "Time Log Batch",
40 "description": _("Batch Time Logs for billing."),
41 },
42 {
43 "type": "doctype",
44 "name": "Activity Type",
45 "description": _("Types of activities for Time Sheets"),
46 },
Neil Trini Lasrado458b8882015-03-24 12:49:45 +053047 {
48 "type": "doctype",
49 "name": "Activity Cost",
50 "description": _("Cost of various activities"),
51 },
Anand Doshi08ef4672014-05-08 11:43:18 +053052 ]
53 },
54 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053055 "label": _("Reports"),
Anand Doshi08ef4672014-05-08 11:43:18 +053056 "icon": "icon-list",
57 "items": [
58 {
59 "type": "report",
60 "is_query_report": True,
61 "name": "Daily Time Log Summary",
62 "doctype": "Time Log"
63 },
64 {
65 "type": "report",
66 "is_query_report": True,
67 "name": "Project wise Stock Tracking",
68 "doctype": "Project"
69 },
70 ]
71 },
Sambhaji Kolatefd539912015-10-27 17:01:27 +053072 {
73 "label": _("Help"),
74 "icon": "icon-facetime-video",
75 "items": [
76 {
77 "type": "help",
78 "label": _("Managing Projects"),
79 "youtube_id": "egxIGwtoKI4"
80 },
81 ]
82 },
Anand Doshi08ef4672014-05-08 11:43:18 +053083 ]