blob: 8423a161bf41ff7bf155fe0ff28882174f7ab8bd [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",
Nabin Hait996a1012014-09-23 14:53:30 +053031 "name": "Installation Note",
32 "description": _("Installation record for a Serial No.")
33 },
34 {
35 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053036 "name": "Item",
37 "description": _("All Products or Services."),
38 },
39 {
40 "type": "doctype",
41 "name": "Warehouse",
42 "description": _("Where items are stored."),
43 },
44 {
45 "type": "doctype",
46 "name": "Serial No",
47 "description": _("Single unit of an Item."),
48 },
49 {
50 "type": "doctype",
51 "name": "Batch",
52 "description": _("Batch (lot) of an Item."),
53 },
54 ]
55 },
56 {
57 "label": _("Tools"),
58 "icon": "icon-wrench",
59 "items": [
60 {
61 "type": "doctype",
62 "name": "Stock Reconciliation",
63 "description": _("Upload stock balance via csv.")
64 },
65 {
66 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +053067 "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",
Nabin Hait12ce3ee2014-09-01 18:14:44 +053077 "name": "Landed Cost Voucher",
78 "description": _("Update additional costs to calculate landed cost of items"),
Anand Doshi08ef4672014-05-08 11:43:18 +053079 },
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 },
Rushabh Mehta70aa8932014-09-26 18:54:01 +0530132 {
133 "type": "doctype",
134 "name": "Item Attribute",
135 "description": _("Attributes for Item Variants. e.g Size, Color etc."),
136 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530137 ]
138 },
139 {
140 "label": _("Main Reports"),
141 "icon": "icon-table",
142 "items": [
143 {
144 "type": "report",
145 "is_query_report": True,
146 "name": "Stock Ledger",
147 "doctype": "Item",
148 },
149 {
Nabin Hait4f0e5db2014-10-10 20:54:57 +0530150 "type": "report",
151 "is_query_report": True,
152 "name": "Stock Balance",
153 "doctype": "Warehouse"
Anand Doshi08ef4672014-05-08 11:43:18 +0530154 },
155 {
156 "type": "report",
157 "is_query_report": True,
158 "name": "Stock Projected Qty",
159 "doctype": "Item",
160 },
161 {
162 "type": "report",
163 "is_query_report": True,
164 "name": "Stock Ageing",
165 "doctype": "Item",
166 },
167 {
168 "type": "report",
Anand Doshib527e542014-06-09 18:08:46 +0530169 "is_query_report": False,
Anand Doshi08ef4672014-05-08 11:43:18 +0530170 "name": "Item-wise Price List Rate",
171 "doctype": "Item Price",
172 },
173 {
174 "type": "page",
175 "name": "stock-analytics",
176 "label": _("Stock Analytics"),
177 "icon": "icon-bar-chart"
Nabin Hait4f0e5db2014-10-10 20:54:57 +0530178 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530179 ]
180 },
181 {
182 "label": _("Standard Reports"),
183 "icon": "icon-list",
184 "items": [
185 {
186 "type": "report",
187 "is_query_report": True,
188 "name": "Ordered Items To Be Delivered",
189 "doctype": "Delivery Note"
190 },
191 {
192 "type": "report",
193 "is_query_report": True,
194 "name": "Purchase Order Items To Be Received",
195 "doctype": "Purchase Receipt"
196 },
197 {
198 "type": "report",
199 "name": "Item Shortage Report",
200 "route": "Report/Bin/Item Shortage Report",
201 "doctype": "Purchase Receipt"
202 },
203 {
204 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530205 "name": "Serial No Service Contract Expiry",
206 "doctype": "Serial No"
207 },
208 {
209 "type": "report",
210 "name": "Serial No Status",
211 "doctype": "Serial No"
212 },
213 {
214 "type": "report",
215 "name": "Serial No Warranty Expiry",
216 "doctype": "Serial No"
217 },
218 {
219 "type": "report",
220 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530221 "name": "Requested Items To Be Transferred",
222 "doctype": "Material Request"
223 },
224 {
225 "type": "report",
226 "is_query_report": True,
227 "name": "Batch-Wise Balance History",
228 "doctype": "Batch"
229 },
230 {
231 "type": "report",
232 "is_query_report": True,
Anand Doshi08ef4672014-05-08 11:43:18 +0530233 "name": "Item Prices",
234 "doctype": "Price List"
235 },
236 {
237 "type": "report",
238 "is_query_report": True,
239 "name": "Itemwise Recommended Reorder Level",
240 "doctype": "Item"
241 },
242 {
243 "type": "report",
244 "is_query_report": True,
245 "name": "Delivery Note Trends",
246 "doctype": "Delivery Note"
247 },
248 {
249 "type": "report",
250 "is_query_report": True,
251 "name": "Purchase Receipt Trends",
252 "doctype": "Purchase Receipt"
253 },
254 ]
255 },
256 ]