blob: 86ec45800cd344535a4e99e758476e74d8e73a8c [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 {
7 "label": _("Documents"),
8 "icon": "icon-star",
9 "items": [
10 {
11 "type": "doctype",
12 "name": "Material Request",
13 "description": _("Requests for items."),
14 },
15 {
16 "type": "doctype",
17 "name": "Stock Entry",
18 "description": _("Record item movement."),
19 },
20 {
21 "type": "doctype",
22 "name": "Delivery Note",
23 "description": _("Shipments to customers."),
24 },
25 {
26 "type": "doctype",
27 "name": "Purchase Receipt",
28 "description": _("Goods received from Suppliers."),
29 },
30 {
31 "type": "doctype",
Nabin Hait996a1012014-09-23 14:53:30 +053032 "name": "Installation Note",
33 "description": _("Installation record for a Serial No.")
34 },
35 {
36 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053037 "name": "Item",
38 "description": _("All Products or Services."),
39 },
40 {
41 "type": "doctype",
42 "name": "Warehouse",
43 "description": _("Where items are stored."),
44 },
45 {
46 "type": "doctype",
47 "name": "Serial No",
48 "description": _("Single unit of an Item."),
49 },
50 {
51 "type": "doctype",
52 "name": "Batch",
53 "description": _("Batch (lot) of an Item."),
54 },
55 ]
56 },
57 {
58 "label": _("Tools"),
59 "icon": "icon-wrench",
60 "items": [
61 {
62 "type": "doctype",
63 "name": "Stock Reconciliation",
64 "description": _("Upload stock balance via csv.")
65 },
66 {
67 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053068 "name": "Packing Slip",
69 "description": _("Split Delivery Note into packages.")
70 },
71 {
72 "type": "doctype",
73 "name": "Quality Inspection",
74 "description": _("Incoming quality inspection.")
75 },
76 {
77 "type": "doctype",
Nabin Hait12ce3ee2014-09-01 18:14:44 +053078 "name": "Landed Cost Voucher",
79 "description": _("Update additional costs to calculate landed cost of items"),
Anand Doshi08ef4672014-05-08 11:43:18 +053080 },
81 {
82 "type": "doctype",
83 "name": "Stock UOM Replace Utility",
84 "description": _("Change UOM for an Item."),
85 },
86 ]
87 },
88 {
89 "label": _("Setup"),
90 "icon": "icon-cog",
91 "items": [
92 {
93 "type": "doctype",
94 "name": "Stock Settings",
95 "description": _("Default settings for stock transactions.")
96 },
97 {
98 "type": "page",
99 "name": "Sales Browser",
100 "icon": "icon-sitemap",
101 "label": _("Item Group Tree"),
102 "link": "Sales Browser/Item Group",
103 "description": _("Tree of Item Groups."),
104 "doctype": "Item Group",
105 },
106 {
107 "type": "doctype",
108 "name": "UOM",
109 "label": _("Unit of Measure") + " (UOM)",
110 "description": _("e.g. Kg, Unit, Nos, m")
111 },
112 {
113 "type": "doctype",
114 "name": "Warehouse",
115 "description": _("Warehouses.")
116 },
117 {
118 "type": "doctype",
119 "name": "Brand",
120 "description": _("Brand master.")
121 },
122 {
123 "type": "doctype",
124 "name": "Price List",
125 "description": _("Price List master.")
126 },
127 {
128 "type": "doctype",
129 "name": "Item Price",
130 "description": _("Multiple Item prices."),
131 "route": "Report/Item Price"
132 },
Rushabh Mehta70aa8932014-09-26 18:54:01 +0530133 {
134 "type": "doctype",
135 "name": "Item Attribute",
136 "description": _("Attributes for Item Variants. e.g Size, Color etc."),
137 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530138 ]
139 },
140 {
141 "label": _("Main Reports"),
142 "icon": "icon-table",
143 "items": [
144 {
145 "type": "report",
146 "is_query_report": True,
147 "name": "Stock Ledger",
Nabin Hait4bfbd292015-05-07 15:40:43 +0530148 "doctype": "Stock Ledger Entry",
Anand Doshi08ef4672014-05-08 11:43:18 +0530149 },
150 {
Nabin Hait4f0e5db2014-10-10 20:54:57 +0530151 "type": "report",
152 "is_query_report": True,
153 "name": "Stock Balance",
Nabin Hait4bfbd292015-05-07 15:40:43 +0530154 "doctype": "Stock Ledger Entry"
Anand Doshi08ef4672014-05-08 11:43:18 +0530155 },
156 {
157 "type": "report",
158 "is_query_report": True,
159 "name": "Stock Projected Qty",
160 "doctype": "Item",
161 },
162 {
163 "type": "report",
164 "is_query_report": True,
165 "name": "Stock Ageing",
166 "doctype": "Item",
167 },
168 {
169 "type": "report",
Anand Doshib527e542014-06-09 18:08:46 +0530170 "is_query_report": False,
Anand Doshi08ef4672014-05-08 11:43:18 +0530171 "name": "Item-wise Price List Rate",
172 "doctype": "Item Price",
173 },
174 {
175 "type": "page",
176 "name": "stock-analytics",
177 "label": _("Stock Analytics"),
178 "icon": "icon-bar-chart"
Nabin Hait4f0e5db2014-10-10 20:54:57 +0530179 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530180 ]
181 },
182 {
183 "label": _("Standard Reports"),
184 "icon": "icon-list",
185 "items": [
186 {
187 "type": "report",
188 "is_query_report": True,
189 "name": "Ordered Items To Be Delivered",
190 "doctype": "Delivery Note"
191 },
192 {
193 "type": "report",
194 "is_query_report": True,
195 "name": "Purchase Order Items To Be Received",
196 "doctype": "Purchase Receipt"
197 },
198 {
199 "type": "report",
200 "name": "Item Shortage Report",
201 "route": "Report/Bin/Item Shortage Report",
202 "doctype": "Purchase Receipt"
203 },
204 {
205 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530206 "name": "Serial No Service Contract Expiry",
207 "doctype": "Serial No"
208 },
209 {
210 "type": "report",
211 "name": "Serial No Status",
212 "doctype": "Serial No"
213 },
214 {
215 "type": "report",
216 "name": "Serial No Warranty Expiry",
217 "doctype": "Serial No"
218 },
219 {
220 "type": "report",
221 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530222 "name": "Requested Items To Be Transferred",
223 "doctype": "Material Request"
224 },
225 {
226 "type": "report",
227 "is_query_report": True,
228 "name": "Batch-Wise Balance History",
229 "doctype": "Batch"
230 },
231 {
232 "type": "report",
233 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530234 "name": "Item Prices",
235 "doctype": "Price List"
236 },
237 {
238 "type": "report",
239 "is_query_report": True,
240 "name": "Itemwise Recommended Reorder Level",
241 "doctype": "Item"
242 },
243 {
244 "type": "report",
245 "is_query_report": True,
246 "name": "Delivery Note Trends",
247 "doctype": "Delivery Note"
248 },
249 {
250 "type": "report",
251 "is_query_report": True,
252 "name": "Purchase Receipt Trends",
253 "doctype": "Purchase Receipt"
254 },
255 ]
256 },
Rushabh Mehta67712402015-05-25 18:30:53 +0530257 {
258 "label": _("Help"),
259 "icon": "icon-facetime-video",
260 "items": [
261 {
262 "type": "help",
263 "label": _("Items and Pricing"),
264 "youtube_id": "qXaEwld4_Ps"
265 },
266 {
267 "type": "help",
268 "label": _("Opening Stock Balance"),
269 "youtube_id": "yPgrtfeCTs"
270 },
271 {
272 "type": "help",
273 "label": _("Item Variants"),
274 "youtube_id": "OGBETlCzU5o"
275 },
276 ]
277 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530278 ]