blob: fbf7d7ce92162c4c2587a8a3fa4806bd12c8b054 [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 },
133 ]
134 },
135 {
136 "label": _("Main Reports"),
137 "icon": "icon-table",
138 "items": [
139 {
140 "type": "report",
141 "is_query_report": True,
142 "name": "Stock Ledger",
143 "doctype": "Item",
144 },
145 {
Nabin Hait4f0e5db2014-10-10 20:54:57 +0530146 "type": "report",
147 "is_query_report": True,
148 "name": "Stock Balance",
149 "doctype": "Warehouse"
Anand Doshi08ef4672014-05-08 11:43:18 +0530150 },
151 {
152 "type": "report",
153 "is_query_report": True,
154 "name": "Stock Projected Qty",
155 "doctype": "Item",
156 },
157 {
158 "type": "report",
159 "is_query_report": True,
160 "name": "Stock Ageing",
161 "doctype": "Item",
162 },
163 {
164 "type": "report",
Anand Doshib527e542014-06-09 18:08:46 +0530165 "is_query_report": False,
Anand Doshi08ef4672014-05-08 11:43:18 +0530166 "name": "Item-wise Price List Rate",
167 "doctype": "Item Price",
168 },
169 {
170 "type": "page",
171 "name": "stock-analytics",
172 "label": _("Stock Analytics"),
173 "icon": "icon-bar-chart"
Nabin Hait4f0e5db2014-10-10 20:54:57 +0530174 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530175 ]
176 },
177 {
178 "label": _("Standard Reports"),
179 "icon": "icon-list",
180 "items": [
181 {
182 "type": "report",
183 "is_query_report": True,
184 "name": "Ordered Items To Be Delivered",
185 "doctype": "Delivery Note"
186 },
187 {
188 "type": "report",
189 "is_query_report": True,
190 "name": "Purchase Order Items To Be Received",
191 "doctype": "Purchase Receipt"
192 },
193 {
194 "type": "report",
195 "name": "Item Shortage Report",
196 "route": "Report/Bin/Item Shortage Report",
197 "doctype": "Purchase Receipt"
198 },
199 {
200 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530201 "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,
Anand Doshi08ef4672014-05-08 11:43:18 +0530229 "name": "Item Prices",
230 "doctype": "Price List"
231 },
232 {
233 "type": "report",
234 "is_query_report": True,
235 "name": "Itemwise Recommended Reorder Level",
236 "doctype": "Item"
237 },
238 {
239 "type": "report",
240 "is_query_report": True,
241 "name": "Delivery Note Trends",
242 "doctype": "Delivery Note"
243 },
244 {
245 "type": "report",
246 "is_query_report": True,
247 "name": "Purchase Receipt Trends",
248 "doctype": "Purchase Receipt"
249 },
250 ]
251 },
252 ]