brotherton-erpnext/erpnext/config/agriculture.py
2019-03-14 12:31:25 +05:30

70 lines
1.1 KiB
Python

from __future__ import unicode_literals
from frappe import _
def get_data():
return [
{
"label": _("Crops & Lands"),
"items": [
{
"type": "doctype",
"name": "Crop",
"onboard": 1,
},
{
"type": "doctype",
"name": "Crop Cycle",
"onboard": 1,
},
{
"type": "doctype",
"name": "Location",
"onboard": 1,
}
]
},
{
"label": _("Diseases & Fertilizers"),
"items": [
{
"type": "doctype",
"name": "Disease",
"onboard": 1,
},
{
"type": "doctype",
"name": "Fertilizer",
"onboard": 1,
}
]
},
{
"label": _("Analytics"),
"items": [
{
"type": "doctype",
"name": "Plant Analysis",
},
{
"type": "doctype",
"name": "Soil Analysis",
},
{
"type": "doctype",
"name": "Water Analysis",
},
{
"type": "doctype",
"name": "Soil Texture",
},
{
"type": "doctype",
"name": "Weather",
},
{
"type": "doctype",
"name": "Agriculture Analysis Criteria",
}
]
},
]