blob: d591c9e2a877073e8287531c5241e6c8800738fc [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 {
7 "label": _("Documents"),
8 "icon": "icon-star",
9 "items": [
10 {
11 "type": "doctype",
12 "name": "Task",
13 "description": _("Project activity / task."),
14 },
15 {
16 "type": "doctype",
17 "name": "Project",
18 "description": _("Project master."),
19 },
20 {
21 "type": "doctype",
22 "name": "Time Log",
23 "description": _("Time Log for tasks."),
24 },
25 {
26 "type": "doctype",
27 "name": "Time Log Batch",
28 "description": _("Batch Time Logs for billing."),
29 },
30 {
31 "type": "doctype",
32 "name": "Activity Type",
33 "description": _("Types of activities for Time Sheets"),
34 },
35 ]
36 },
37 {
38 "label": _("Tools"),
39 "icon": "icon-wrench",
40 "items": [
41 {
42 "type": "report",
43 "route": "Gantt/Task",
44 "doctype": "Task",
45 "name": "Gantt Chart",
46 "description": _("Gantt chart of all tasks.")
47 },
48 ]
49 },
50 {
51 "label": _("Standard Reports"),
52 "icon": "icon-list",
53 "items": [
54 {
55 "type": "report",
56 "is_query_report": True,
57 "name": "Daily Time Log Summary",
58 "doctype": "Time Log"
59 },
60 {
61 "type": "report",
62 "is_query_report": True,
63 "name": "Project wise Stock Tracking",
64 "doctype": "Project"
65 },
66 ]
67 },
68 ]