12345678910111213141516171819202122232425262728293031 |
- from __future__ import unicode_literals
- from frappe import _
- def get_data():
- config = [{
- "label": _("Reports"),
- "items": [{
- "type": "report",
- "name": "Procurement Report",
- "description": _("Procurement Report."),
- "doctype": "Opportunity",
- "is_query_report": True
- },
- {
- "type": "report",
- "name": "Engineer-wise Customer RFQ Status",
- "description": _("Engineer-wise Customer RFQ Status."),
- "doctype": "Opportunity",
- "is_query_report": True
- },
- {
- "type": "report",
- "name": "Tracker",
- "description": _("Tracker Report."),
- "doctype": "Sales Order",
- "is_query_report": True
- },
- ]
- }
- ]
- return config
|