blob: 7a44f556677969e1dacdfc2b4041d95bf812eb4c [file] [log] [blame]
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +05301from frappe import _
2
3def get_data():
4 return [
5 {
6 "label": _("Maintenance"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +05307 "icon": "fa fa-star",
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +05308 "items": [
9 {
10 "type": "doctype",
11 "name": "Maintenance Schedule",
12 "description": _("Plan for maintenance visits."),
13 },
14 {
15 "type": "doctype",
16 "name": "Maintenance Visit",
17 "description": _("Visit report for maintenance call."),
18 },
19 {
20 "type": "report",
21 "name": "Maintenance Schedules",
22 "is_query_report": True,
23 "doctype": "Maintenance Schedule"
24 },
25 {
26 "type": "doctype",
27 "name": "Warranty Claim",
28 "description": _("Warranty Claim against Serial No."),
29 },
30 ]
31 }
32 ]