Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 1 | from frappe import _ |
| 2 | |
| 3 | data = [ |
| 4 | { |
| 5 | "label": _("Documents"), |
| 6 | "icon": "icon-star", |
| 7 | "items": [ |
| 8 | { |
| 9 | "type": "doctype", |
Anand Doshi | 6b12b07 | 2014-03-03 16:05:00 +0530 | [diff] [blame] | 10 | "name": "Task", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 11 | "description": _("Project activity / task."), |
| 12 | }, |
| 13 | { |
| 14 | "type": "doctype", |
Anand Doshi | 6b12b07 | 2014-03-03 16:05:00 +0530 | [diff] [blame] | 15 | "name": "Project", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 16 | "description": _("Project master."), |
| 17 | }, |
| 18 | { |
| 19 | "type": "doctype", |
Anand Doshi | 6b12b07 | 2014-03-03 16:05:00 +0530 | [diff] [blame] | 20 | "name": "Time Log", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 21 | "description": _("Time Log for tasks."), |
| 22 | }, |
| 23 | { |
| 24 | "type": "doctype", |
Anand Doshi | 6b12b07 | 2014-03-03 16:05:00 +0530 | [diff] [blame] | 25 | "name": "Time Log Batch", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 26 | "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 Doshi | 6b12b07 | 2014-03-03 16:05:00 +0530 | [diff] [blame] | 42 | "doctype": "Task", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 43 | "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 | ] |