blob: 937d76ef7b39c58cde2afdbc68aad70f73c73f55 [file] [log] [blame]
Ameya Shenoy5c623682017-12-06 18:36:27 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Crops & Lands"),
8 "items": [
9 {
10 "type": "doctype",
11 "name": "Crop",
Prateeksha Singh8aa45942019-03-04 14:00:02 +053012 "onboard": 1,
Ameya Shenoy5c623682017-12-06 18:36:27 +053013 },
14 {
15 "type": "doctype",
16 "name": "Crop Cycle",
Prateeksha Singh8aa45942019-03-04 14:00:02 +053017 "onboard": 1,
Ameya Shenoy5c623682017-12-06 18:36:27 +053018 },
19 {
20 "type": "doctype",
Prateeksha Singh8aa45942019-03-04 14:00:02 +053021 "name": "Location",
22 "onboard": 1,
Ameya Shenoy5c623682017-12-06 18:36:27 +053023 }
24 ]
25 },
26 {
27 "label": _("Diseases & Fertilizers"),
28 "items": [
29 {
30 "type": "doctype",
31 "name": "Disease",
Prateeksha Singh8aa45942019-03-04 14:00:02 +053032 "onboard": 1,
Ameya Shenoy5c623682017-12-06 18:36:27 +053033 },
34 {
35 "type": "doctype",
36 "name": "Fertilizer",
Prateeksha Singh8aa45942019-03-04 14:00:02 +053037 "onboard": 1,
Ameya Shenoy5c623682017-12-06 18:36:27 +053038 }
39 ]
40 },
41 {
42 "label": _("Analytics"),
43 "items": [
44 {
45 "type": "doctype",
46 "name": "Plant Analysis",
47 },
48 {
49 "type": "doctype",
50 "name": "Soil Analysis",
51 },
52 {
53 "type": "doctype",
54 "name": "Water Analysis",
55 },
56 {
57 "type": "doctype",
58 "name": "Soil Texture",
59 },
60 {
61 "type": "doctype",
62 "name": "Weather",
63 },
64 {
65 "type": "doctype",
66 "name": "Agriculture Analysis Criteria",
67 }
68 ]
69 },
70 ]