Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 1 | from frappe import _ |
| 2 | |
| 3 | data = [ |
| 4 | { |
| 5 | "label": _("Documents"), |
| 6 | "icon": "icon-star", |
| 7 | "items": [ |
| 8 | { |
| 9 | "type": "doctype", |
| 10 | "name": "Supplier", |
| 11 | "description": _("Supplier database."), |
| 12 | }, |
| 13 | { |
| 14 | "type": "doctype", |
| 15 | "name": "Material Request", |
| 16 | "description": _("Request for purchase."), |
| 17 | }, |
| 18 | { |
| 19 | "type": "doctype", |
| 20 | "name": "Supplier Quotation", |
| 21 | "description": _("Quotations received from Suppliers."), |
| 22 | }, |
| 23 | { |
| 24 | "type": "doctype", |
| 25 | "name": "Purchase Order", |
| 26 | "description": _("Purchase Orders given to Suppliers."), |
| 27 | }, |
| 28 | { |
| 29 | "type": "doctype", |
| 30 | "name": "Contact", |
| 31 | "description": _("All Contacts."), |
| 32 | }, |
| 33 | { |
| 34 | "type": "doctype", |
| 35 | "name": "Address", |
| 36 | "description": _("All Addresses."), |
| 37 | }, |
| 38 | { |
| 39 | "type": "doctype", |
| 40 | "name": "Item", |
| 41 | "description": _("All Products or Services."), |
| 42 | }, |
| 43 | ] |
| 44 | }, |
| 45 | { |
| 46 | "label": _("Setup"), |
| 47 | "icon": "icon-cog", |
| 48 | "items": [ |
| 49 | { |
| 50 | "type": "doctype", |
| 51 | "name": "Buying Settings", |
| 52 | "description": _("Default settings for buying transactions.") |
| 53 | }, |
| 54 | { |
| 55 | "type": "doctype", |
| 56 | "name": "Supplier Type", |
| 57 | "description": _("Supplier Type master.") |
| 58 | }, |
| 59 | { |
| 60 | "type": "page", |
| 61 | "name": "Sales Browser", |
| 62 | "icon": "icon-sitemap", |
| 63 | "label": _("Item Group Tree"), |
| 64 | "link": "Sales Browser/Item Group", |
| 65 | "description": _("Tree of Item Groups."), |
| 66 | "doctype": "Item Group", |
| 67 | }, |
| 68 | { |
| 69 | "type": "doctype", |
| 70 | "name":"Terms and Conditions", |
| 71 | "label": _("Terms and Conditions Template"), |
| 72 | "description": _("Template of terms or contract.") |
| 73 | }, |
| 74 | { |
| 75 | "type": "doctype", |
| 76 | "name": "Purchase Taxes and Charges Master", |
| 77 | "description": _("Tax template for buying transactions.") |
| 78 | }, |
| 79 | { |
| 80 | "type": "doctype", |
| 81 | "name": "Price List", |
| 82 | "description": _("Price List master.") |
| 83 | }, |
| 84 | { |
| 85 | "type": "doctype", |
| 86 | "name": "Item Price", |
| 87 | "description": _("Multiple Item prices."), |
| 88 | "route": "Report/Item Price" |
| 89 | }, |
Anand Doshi | b2c2fca | 2014-03-05 18:24:48 +0530 | [diff] [blame^] | 90 | { |
| 91 | "type": "doctype", |
| 92 | "name": "Pricing Rule", |
| 93 | "description": _("Rules for applying pricing and discount.") |
| 94 | }, |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 95 | ] |
| 96 | }, |
| 97 | { |
| 98 | "label": _("Main Reports"), |
| 99 | "icon": "icon-table", |
| 100 | "items": [ |
| 101 | { |
| 102 | "type": "page", |
| 103 | "name": "purchase-analytics", |
| 104 | "label": _("Purchase Analytics"), |
| 105 | "icon": "icon-bar-chart", |
| 106 | }, |
| 107 | ] |
| 108 | }, |
| 109 | { |
| 110 | "label": _("Standard Reports"), |
| 111 | "icon": "icon-list", |
| 112 | "items": [ |
| 113 | { |
| 114 | "type": "report", |
| 115 | "is_query_report": True, |
| 116 | "name": "Items To Be Requested", |
| 117 | "doctype": "Item" |
| 118 | }, |
| 119 | { |
| 120 | "type": "report", |
| 121 | "is_query_report": True, |
| 122 | "name": "Requested Items To Be Ordered", |
| 123 | "doctype": "Material Request" |
| 124 | }, |
| 125 | { |
| 126 | "type": "report", |
| 127 | "is_query_report": True, |
| 128 | "name": "Material Requests for which Supplier Quotations are not created", |
| 129 | "doctype": "Material Request" |
| 130 | }, |
| 131 | { |
| 132 | "type": "report", |
| 133 | "is_query_report": True, |
| 134 | "name": "Purchase In Transit", |
| 135 | "doctype": "Purchase Order" |
| 136 | }, |
| 137 | { |
| 138 | "type": "report", |
| 139 | "is_query_report": True, |
| 140 | "name": "Item-wise Purchase History", |
| 141 | "doctype": "Item" |
| 142 | }, |
| 143 | { |
| 144 | "type": "report", |
| 145 | "is_query_report": True, |
| 146 | "name": "Item-wise Last Purchase Rate", |
| 147 | "doctype": "Item" |
| 148 | }, |
| 149 | { |
| 150 | "type": "report", |
| 151 | "is_query_report": True, |
| 152 | "name": "Purchase Order Trends", |
| 153 | "doctype": "Purchase Order" |
| 154 | }, |
| 155 | { |
| 156 | "type": "report", |
| 157 | "is_query_report": True, |
| 158 | "name": "Supplier Addresses And Contacts", |
| 159 | "doctype": "Supplier" |
| 160 | }, |
| 161 | { |
| 162 | "type": "report", |
| 163 | "is_query_report": True, |
| 164 | "name": "Supplier-Wise Sales Analytics", |
| 165 | "doctype": "Stock Ledger Entry" |
| 166 | } |
| 167 | ] |
| 168 | }, |
| 169 | ] |