blob: afc4ea8164740921e21f992423a32430698882e5 [file] [log] [blame]
Anand Doshif5794f12014-03-03 15:05:28 +05301from frappe import _
2
3data = [
4 {
5 "label": _("Documents"),
6 "icon": "icon-star",
7 "items": [
8 {
9 "type": "doctype",
10 "name": "Material Request",
11 "description": _("Requests for items."),
12 },
13 {
14 "type": "doctype",
15 "name": "Stock Entry",
16 "description": _("Record item movement."),
17 },
18 {
19 "type": "doctype",
20 "name": "Delivery Note",
21 "description": _("Shipments to customers."),
22 },
23 {
24 "type": "doctype",
25 "name": "Purchase Receipt",
26 "description": _("Goods received from Suppliers."),
27 },
28 {
29 "type": "doctype",
30 "name": "Item",
31 "description": _("All Products or Services."),
32 },
33 {
34 "type": "doctype",
35 "name": "Warehouse",
36 "description": _("Where items are stored."),
37 },
38 {
39 "type": "doctype",
40 "name": "Serial No",
41 "description": _("Single unit of an Item."),
42 },
43 {
44 "type": "doctype",
45 "name": "Batch",
46 "description": _("Batch (lot) of an Item."),
47 },
48 ]
49 },
50 {
51 "label": _("Tools"),
52 "icon": "icon-wrench",
53 "items": [
54 {
55 "type": "doctype",
56 "name": "Stock Reconciliation",
57 "description": _("Upload stock balance via csv.")
58 },
59 {
60 "type": "doctype",
61 "name": "Installation Note",
62 "description": _("Installation record for a Serial No.")
63 },
64 {
65 "type": "doctype",
66 "name": "Packing Slip",
67 "description": _("Split Delivery Note into packages.")
68 },
69 {
70 "type": "doctype",
71 "name": "Quality Inspection",
72 "description": _("Incoming quality inspection.")
73 },
74 {
75 "type": "doctype",
76 "name": "Landed Cost Wizard",
77 "description": _("Distribute transport overhead across items."),
78 },
79 {
80 "type": "doctype",
81 "name": "Stock UOM Replace Utility",
82 "description": _("Change UOM for an Item."),
83 },
84 ]
85 },
86 {
87 "label": _("Setup"),
88 "icon": "icon-cog",
89 "items": [
90 {
91 "type": "doctype",
92 "name": "Stock Settings",
93 "description": _("Default settings for stock transactions.")
94 },
95 {
96 "type": "page",
97 "name": "Sales Browser",
98 "icon": "icon-sitemap",
99 "label": _("Item Group Tree"),
100 "link": "Sales Browser/Item Group",
101 "description": _("Tree of Item Groups."),
102 "doctype": "Item Group",
103 },
104 {
105 "type": "doctype",
106 "name": "UOM",
107 "label": _("Unit of Measure") + " (UOM)",
108 "description": _("e.g. Kg, Unit, Nos, m")
109 },
110 {
111 "type": "doctype",
112 "name": "Warehouse",
113 "description": _("Warehouses.")
114 },
115 {
116 "type": "doctype",
117 "name": "Brand",
118 "description": _("Brand master.")
119 },
120 {
121 "type": "doctype",
122 "name": "Price List",
123 "description": _("Price List master.")
124 },
125 {
126 "type": "doctype",
127 "name": "Item Price",
128 "description": _("Multiple Item prices."),
129 "route": "Report/Item Price"
130 },
131 ]
132 },
133 {
134 "label": _("Main Reports"),
135 "icon": "icon-table",
136 "items": [
137 {
138 "type": "report",
139 "is_query_report": True,
140 "name": "Stock Ledger",
141 "doctype": "Item",
142 },
143 {
144 "type": "page",
145 "name": "stock-balance",
146 "label": _("Stock Balance"),
147 "icon": "icon-table",
148 },
149 {
150 "type": "report",
151 "is_query_report": True,
152 "name": "Stock Projected Qty",
153 "doctype": "Item",
154 },
155 {
156 "type": "report",
157 "is_query_report": True,
158 "name": "Stock Ageing",
159 "doctype": "Item",
160 },
161 {
162 "type": "report",
163 "is_query_report": True,
164 "name": "Item-wise Price List Rate",
165 "doctype": "Item Price",
166 },
167 {
168 "type": "page",
169 "name": "stock-analytics",
170 "label": _("Stock Analytics"),
171 "icon": "icon-bar-chart"
172 },
173 ]
174 },
175 {
176 "label": _("Standard Reports"),
177 "icon": "icon-list",
178 "items": [
179 {
180 "type": "report",
181 "is_query_report": True,
182 "name": "Ordered Items To Be Delivered",
183 "doctype": "Delivery Note"
184 },
185 {
186 "type": "report",
187 "is_query_report": True,
188 "name": "Purchase Order Items To Be Received",
189 "doctype": "Purchase Receipt"
190 },
191 {
192 "type": "report",
193 "name": "Item Shortage Report",
194 "route": "Report/Bin/Item Shortage Report",
195 "doctype": "Purchase Receipt"
196 },
197 {
198 "type": "report",
199 "is_query_report": True,
200 "name": "Serial No Service Contract Expiry",
201 "doctype": "Serial No"
202 },
203 {
204 "type": "report",
205 "name": "Serial No Status",
206 "doctype": "Serial No"
207 },
208 {
209 "type": "report",
210 "name": "Serial No Warranty Expiry",
211 "doctype": "Serial No"
212 },
213 {
214 "type": "report",
215 "is_query_report": True,
216 "name": "Purchase In Transit",
217 "doctype": "Purchase Order"
218 },
219 {
220 "type": "report",
221 "is_query_report": True,
222 "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,
234 "name": "Warehouse-Wise Stock Balance",
235 "doctype": "Warehouse"
236 },
237 {
238 "type": "report",
239 "is_query_report": True,
240 "name": "Item Prices",
241 "doctype": "Price List"
242 },
243 {
244 "type": "report",
245 "is_query_report": True,
246 "name": "Itemwise Recommended Reorder Level",
247 "doctype": "Item"
248 },
249 {
250 "type": "report",
251 "is_query_report": True,
252 "name": "Delivery Note Trends",
253 "doctype": "Delivery Note"
254 },
255 {
256 "type": "report",
257 "is_query_report": True,
258 "name": "Purchase Receipt Trends",
259 "doctype": "Purchase Receipt"
260 },
261 ]
262 },
263]