blob: abdca0d7d7d6b64b403098a3376f4d936121c577 [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Anand Doshif5794f12014-03-03 15:05:28 +05302from frappe import _
3
Anand Doshi08ef4672014-05-08 11:43:18 +05304def get_data():
5 return [
6 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +05307 "label": _("Stock Transactions"),
Anand Doshi08ef4672014-05-08 11:43:18 +05308 "items": [
9 {
10 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053011 "name": "Stock Entry",
Anand Doshi08ef4672014-05-08 11:43:18 +053012 },
13 {
14 "type": "doctype",
15 "name": "Delivery Note",
Anand Doshi08ef4672014-05-08 11:43:18 +053016 },
17 {
18 "type": "doctype",
19 "name": "Purchase Receipt",
Anand Doshi08ef4672014-05-08 11:43:18 +053020 },
21 {
22 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053023 "name": "Material Request",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053024 },
25 ]
26 },
27 {
28 "label": _("Stock Reports"),
29 "items": [
30 {
31 "type": "report",
32 "is_query_report": True,
33 "name": "Stock Ledger",
34 "doctype": "Stock Ledger Entry",
35 },
36 {
37 "type": "report",
38 "is_query_report": True,
39 "name": "Stock Balance",
40 "doctype": "Stock Ledger Entry"
41 },
42 {
43 "type": "report",
44 "is_query_report": True,
45 "name": "Stock Projected Qty",
46 "doctype": "Item",
47 },
48 {
Rushabh Mehta37146262017-02-01 18:17:35 +053049 "type": "page",
50 "name": "stock-balance",
51 "label": _("Stock Summary")
52 },
53 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053054 "type": "report",
55 "is_query_report": True,
56 "name": "Stock Ageing",
57 "doctype": "Item",
58 },
Pawan Mehtabb7fab52017-12-12 15:05:03 +053059 {
60 "type": "report",
61 "is_query_report": True,
62 "name": "Item Price Stock",
63 "doctype": "Item",
64 }
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053065 ]
66 },
67 {
68 "label": _("Items and Pricing"),
69 "items": [
70 {
71 "type": "doctype",
72 "name": "Item",
Nabin Hait996a1012014-09-23 14:53:30 +053073 },
74 {
75 "type": "doctype",
rohitwaghchaurea3c3dec2018-03-28 11:51:44 +053076 "name": "Item Alternative",
77 },
78 {
79 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053080 "name": "Product Bundle",
Anand Doshi08ef4672014-05-08 11:43:18 +053081 },
82 {
83 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053084 "name": "Price List",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053085 },
86 {
Saurabh52ec0ed2016-07-05 18:02:38 +053087 "type": "doctype",
88 "name": "Item Group",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053089 "icon": "fa fa-sitemap",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053090 "label": _("Item Group"),
Saurabh17022732016-06-21 13:19:17 +053091 "link": "Tree/Item Group",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053092 },
93 {
94 "type": "doctype",
95 "name": "Item Price",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053096 },
97 {
98 "type": "doctype",
99 "name": "Shipping Rule",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530100 },
101 {
102 "type": "doctype",
103 "name": "Pricing Rule",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530104 },
Rohit Waghchaure0e28fcc2017-08-29 18:15:57 +0530105 {
106 "type": "doctype",
107 "name": "Item Variant Settings",
Rohit Waghchaure0e28fcc2017-08-29 18:15:57 +0530108 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530109 ]
110 },
111 {
112 "label": _("Serial No and Batch"),
113 "items": [
114 {
115 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +0530116 "name": "Serial No",
Anand Doshi08ef4672014-05-08 11:43:18 +0530117 },
118 {
119 "type": "doctype",
120 "name": "Batch",
Anand Doshi08ef4672014-05-08 11:43:18 +0530121 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530122 {
123 "type": "doctype",
124 "name": "Installation Note",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530125 },
126 {
127 "type": "report",
128 "name": "Serial No Service Contract Expiry",
129 "doctype": "Serial No"
130 },
131 {
132 "type": "report",
133 "name": "Serial No Status",
134 "doctype": "Serial No"
135 },
136 {
137 "type": "report",
138 "name": "Serial No Warranty Expiry",
139 "doctype": "Serial No"
140 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530141 ]
142 },
143 {
creamdoryfd1503c2017-11-08 10:58:09 +0800144 "label": _("Fulfilment"),
145 "items": [
146 {
147 "type": "doctype",
148 "name": "Delivery Trip",
149 "description": _("Delivery Trip service tours to customers.")
150 }
151 ]
152 },
153 {
Anand Doshi08ef4672014-05-08 11:43:18 +0530154 "label": _("Tools"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530155 "icon": "fa fa-wrench",
Anand Doshi08ef4672014-05-08 11:43:18 +0530156 "items": [
157 {
158 "type": "doctype",
159 "name": "Stock Reconciliation",
Anand Doshi08ef4672014-05-08 11:43:18 +0530160 },
161 {
162 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +0530163 "name": "Packing Slip",
Anand Doshi08ef4672014-05-08 11:43:18 +0530164 },
165 {
166 "type": "doctype",
167 "name": "Quality Inspection",
Anand Doshi08ef4672014-05-08 11:43:18 +0530168 },
169 {
170 "type": "doctype",
rohitwaghchaure4e8fdf72018-02-22 11:03:48 +0530171 "name": "Quality Inspection Template",
172 },
173 {
174 "type": "doctype",
Nabin Hait12ce3ee2014-09-01 18:14:44 +0530175 "name": "Landed Cost Voucher",
Neil Trini Lasrado62dba502015-08-10 15:51:13 +0530176 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530177 ]
178 },
179 {
180 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530181 "icon": "fa fa-cog",
Anand Doshi08ef4672014-05-08 11:43:18 +0530182 "items": [
183 {
184 "type": "doctype",
185 "name": "Stock Settings",
Anand Doshi08ef4672014-05-08 11:43:18 +0530186 },
187 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530188 "type": "doctype",
189 "name": "Warehouse",
Anand Doshi08ef4672014-05-08 11:43:18 +0530190 },
191 {
192 "type": "doctype",
193 "name": "UOM",
194 "label": _("Unit of Measure") + " (UOM)",
Anand Doshi08ef4672014-05-08 11:43:18 +0530195 },
196 {
197 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530198 "name": "Item Attribute",
Anand Doshi08ef4672014-05-08 11:43:18 +0530199 },
200 {
201 "type": "doctype",
202 "name": "Brand",
Rushabh Mehtacc1262c2017-11-14 16:36:25 +0530203 },
204 {
205 "type": "doctype",
206 "name": "Item Variant Settings",
Anand Doshi08ef4672014-05-08 11:43:18 +0530207 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530208 ]
209 },
210 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530211 "label": _("Analytics"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530212 "icon": "fa fa-table",
Anand Doshi08ef4672014-05-08 11:43:18 +0530213 "items": [
214 {
215 "type": "report",
Anand Doshib527e542014-06-09 18:08:46 +0530216 "is_query_report": False,
Anand Doshi08ef4672014-05-08 11:43:18 +0530217 "name": "Item-wise Price List Rate",
218 "doctype": "Item Price",
219 },
220 {
221 "type": "page",
222 "name": "stock-analytics",
223 "label": _("Stock Analytics"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530224 "icon": "fa fa-bar-chart"
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530225 },
226 {
227 "type": "report",
228 "is_query_report": True,
229 "name": "Delivery Note Trends",
230 "doctype": "Delivery Note"
231 },
232 {
233 "type": "report",
234 "is_query_report": True,
235 "name": "Purchase Receipt Trends",
236 "doctype": "Purchase Receipt"
237 },
238
Anand Doshi08ef4672014-05-08 11:43:18 +0530239 ]
240 },
241 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530242 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530243 "icon": "fa fa-list",
Anand Doshi08ef4672014-05-08 11:43:18 +0530244 "items": [
245 {
246 "type": "report",
247 "is_query_report": True,
248 "name": "Ordered Items To Be Delivered",
249 "doctype": "Delivery Note"
250 },
251 {
252 "type": "report",
253 "is_query_report": True,
254 "name": "Purchase Order Items To Be Received",
255 "doctype": "Purchase Receipt"
256 },
257 {
258 "type": "report",
259 "name": "Item Shortage Report",
260 "route": "Report/Bin/Item Shortage Report",
261 "doctype": "Purchase Receipt"
262 },
263 {
264 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530265 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530266 "name": "Requested Items To Be Transferred",
267 "doctype": "Material Request"
268 },
269 {
270 "type": "report",
271 "is_query_report": True,
272 "name": "Batch-Wise Balance History",
273 "doctype": "Batch"
274 },
275 {
276 "type": "report",
277 "is_query_report": True,
Revant Nandgaonkar0766d3e2016-12-21 12:32:12 +0530278 "name": "Batch Item Expiry Status",
279 "doctype": "Stock Ledger Entry"
280 },
281 {
282 "type": "report",
283 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530284 "name": "Item Prices",
285 "doctype": "Price List"
286 },
287 {
288 "type": "report",
289 "is_query_report": True,
290 "name": "Itemwise Recommended Reorder Level",
291 "doctype": "Item"
292 },
Prateeksha Singh744ff002017-11-17 12:00:29 +0530293 {
294 "type": "report",
295 "is_query_report": True,
296 "name": "Item Variant Details",
297 "doctype": "Item"
298 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530299 ]
300 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530301 {
302 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530303 "icon": "fa fa-facetime-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530304 "items": [
305 {
306 "type": "help",
307 "label": _("Items and Pricing"),
308 "youtube_id": "qXaEwld4_Ps"
309 },
310 {
311 "type": "help",
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530312 "label": _("Item Variants"),
313 "youtube_id": "OGBETlCzU5o"
314 },
315 {
316 "type": "help",
Rushabh Mehta67712402015-05-25 18:30:53 +0530317 "label": _("Opening Stock Balance"),
Nabin Hait89085432015-05-29 16:26:07 +0530318 "youtube_id": "0yPgrtfeCTs"
Rushabh Mehta67712402015-05-25 18:30:53 +0530319 },
320 {
321 "type": "help",
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530322 "label": _("Making Stock Entries"),
323 "youtube_id": "Njt107hlY3I"
324 },
325 {
326 "type": "help",
327 "label": _("Serialized Inventory"),
328 "youtube_id": "gvOVlEwFDAk"
329 },
330 {
331 "type": "help",
332 "label": _("Batch Inventory"),
333 "youtube_id": "J0QKl7ABPKM"
334 },
335 {
336 "type": "help",
337 "label": _("Managing Subcontracting"),
338 "youtube_id": "ThiMCC2DtKo"
Rushabh Mehta67712402015-05-25 18:30:53 +0530339 },
340 ]
341 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530342 ]