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