Module Home Pages using Module View

This commit is contained in:
Anand Doshi
2014-03-03 15:05:28 +05:30
parent f976143063
commit f5794f1c07
40 changed files with 1535 additions and 1854 deletions

View File

@@ -0,0 +1,66 @@
from frappe import _
data = [
{
"label": _("Documents"),
"icon": "icon-star",
"items": [
{
"type": "doctype",
"name": "Task",,
"description": _("Project activity / task."),
},
{
"type": "doctype",
"name": "Project",,
"description": _("Project master."),
},
{
"type": "doctype",
"name": "Time Log",,
"description": _("Time Log for tasks."),
},
{
"type": "doctype",
"name": "Time Log Batch",,
"description": _("Batch Time Logs for billing."),
},
{
"type": "doctype",
"name": "Activity Type",
"description": _("Types of activities for Time Sheets"),
},
]
},
{
"label": _("Tools"),
"icon": "icon-wrench",
"items": [
{
"type": "report",
"route": "Gantt/Task",
"doctype": "Task"
"name": "Gantt Chart",
"description": _("Gantt chart of all tasks.")
},
]
},
{
"label": _("Standard Reports"),
"icon": "icon-list",
"items": [
{
"type": "report",
"is_query_report": True,
"name": "Daily Time Log Summary",
"doctype": "Time Log"
},
{
"type": "report",
"is_query_report": True,
"name": "Project wise Stock Tracking",
"doctype": "Project"
},
]
},
]