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