blob: 2a47c2ab4f352d54fbc483a17e3b75a3dd014b7f [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": "Journal Voucher",
11 "description": _("Accounting journal entries.")
12 },
13 {
14 "type": "doctype",
15 "name": "Sales Invoice",
16 "description": _("Bills raised to Customers.")
17 },
18 {
19 "type": "doctype",
20 "name": "Purchase Invoice",
21 "description": _("Bills raised by Suppliers.")
22 },
23 {
24 "type": "doctype",
25 "name": "Customer",
26 "description": _("Customer database.")
27 },
28 {
29 "type": "doctype",
30 "name": "Supplier",
31 "description": _("Supplier database.")
32 },
33 ]
34 },
35 {
36 "label": _("Tools"),
37 "icon": "icon-wrench",
38 "items": [
39 {
40 "type": "doctype",
41 "name": "Bank Reconciliation",
42 "description": _("Update bank payment dates with journals.")
43 },
44 {
45 "type": "doctype",
46 "name": "Payment to Invoice Matching Tool",
47 "description": _("Match non-linked Invoices and Payments.")
48 },
49 {
50 "type": "doctype",
51 "name": "Period Closing Voucher",
52 "description": _("Close Balance Sheet and book Profit or Loss.")
53 },
54 ]
55 },
56 {
57 "label": _("Setup"),
58 "icon": "icon-cog",
59 "items": [
60 {
61 "type": "doctype",
62 "name": "Fiscal Year",
63 "description": _("Financial / accounting year.")
64 },
65 {
66 "type": "page",
67 "name": "Accounts Browser",
68 "icon": "icon-sitemap",
69 "label": _("Chart of Accounts"),
70 "route": "Accounts Browser/Account",
71 "description": _("Tree of finanial accounts."),
72 "doctype": "Account",
73 },
74 {
75 "type": "page",
76 "name": "Accounts Browser",
77 "icon": "icon-sitemap",
78 "label": _("Chart of Cost Centers"),
79 "route": "Accounts Browser/Cost Center",
80 "description": _("Tree of finanial Cost Centers."),
81 "doctype": "Cost Center",
82 },
83 {
84 "type": "doctype",
85 "name": "Accounts Settings",
86 "description": _("Default settings for accounting transactions.")
87 },
88 {
89 "type": "doctype",
90 "name": "Sales Taxes and Charges Master",
91 "description": _("Tax template for selling transactions.")
92 },
93 {
94 "type": "doctype",
95 "name": "Purchase Taxes and Charges Master",
96 "description": _("Tax template for buying transactions.")
97 },
98 {
99 "type": "doctype",
100 "name": "POS Setting",
101 "label": _("Point-of-Sale Setting"),
102 "description": _("Rules to calculate shipping amount for a sale")
103 },
104 {
105 "type": "doctype",
Anand Doshib2c2fca2014-03-05 18:24:48 +0530106 "name": "Shipping Rule",
Anand Doshif5794f12014-03-03 15:05:28 +0530107 "description": _("Rules for adding shipping costs.")
108 },
109 {
110 "type": "doctype",
Anand Doshib2c2fca2014-03-05 18:24:48 +0530111 "name": "Pricing Rule",
112 "description": _("Rules for applying pricing and discount.")
113 },
114 {
115 "type": "doctype",
Anand Doshif5794f12014-03-03 15:05:28 +0530116 "name": "Currency",
117 "description": _("Enable / disable currencies.")
118 },
119 {
120 "type": "doctype",
121 "name": "Currency Exchange",
122 "description": _("Currency exchange rate master.")
123 },
124 {
125 "type":"doctype",
126 "name": "Budget Distribution",
127 "description": _("Seasonality for setting budgets.")
128 },
129 {
130 "type": "doctype",
131 "name":"Terms and Conditions",
132 "label": _("Terms and Conditions Template"),
133 "description": _("Template of terms or contract.")
134 },
135 {
136 "type": "doctype",
137 "name":"Mode of Payment",
138 "description": _("e.g. Bank, Cash, Credit Card")
139 },
140 {
141 "type": "doctype",
142 "name":"C-Form",
143 "description": _("C-Form records"),
144 "country": "India"
145 }
146 ]
147 },
148 {
149 "label": _("Main Reports"),
150 "icon": "icon-table",
151 "items": [
152 {
153 "type": "report",
154 "name":"General Ledger",
155 "doctype": "GL Entry",
156 "is_query_report": True,
157 },
158 {
159 "type": "page",
160 "name": "trial-balance",
161 "label": _("Trial Balance"),
162 "icon": "icon-table"
163 },
164 {
165 "type": "page",
166 "name":"Financial Statements",
167 "icon": "icon-table"
168 },
169 {
170 "type": "report",
171 "name": "Accounts Receivable",
172 "doctype": "Sales Invoice",
173 "is_query_report": True
174 },
175 {
176 "type": "report",
177 "name": "Accounts Payable",
178 "doctype": "Purchase Invoice",
179 "is_query_report": True
180 },
181 {
182 "type": "report",
183 "name": "Sales Register",
184 "doctype": "Sales Invoice",
185 "is_query_report": True
186 },
187 {
188 "type": "report",
189 "name": "Purchase Register",
190 "doctype": "Purchase Invoice",
191 "is_query_report": True
192 },
193 {
194 "type": "page",
195 "name": "financial-analytics",
196 "label": _("Financial Analytics"),
197 "icon": "icon-bar-chart",
198 },
199 {
200 "type": "report",
201 "name": "Gross Profit",
202 "doctype": "Sales Invoice",
203 "is_query_report": True
204 },
205 ]
206 },
207 {
208 "label": _("Standard Reports"),
209 "icon": "icon-list",
210 "items": [
211 {
212 "type": "report",
213 "name": "Bank Reconciliation Statement",
214 "is_query_report": True,
215 "doctype": "Journal Voucher"
216 },
217 {
218 "type": "report",
219 "name": "Ordered Items To Be Billed",
220 "is_query_report": True,
221 "doctype": "Sales Invoice"
222 },
223 {
224 "type": "report",
225 "name": "Delivered Items To Be Billed",
226 "is_query_report": True,
227 "doctype": "Sales Invoice"
228 },
229 {
230 "type": "report",
231 "name": "Purchase Order Items To Be Billed",
232 "is_query_report": True,
233 "doctype": "Purchase Invoice"
234 },
235 {
236 "type": "report",
237 "name": "Received Items To Be Billed",
238 "is_query_report": True,
239 "doctype": "Purchase Invoice"
240 },
241 {
242 "type": "report",
243 "name": "Bank Clearance Summary",
244 "is_query_report": True,
245 "doctype": "Journal Voucher"
246 },
247 {
248 "type": "report",
249 "name": "Payment Period Based On Invoice Date",
250 "is_query_report": True,
251 "doctype": "Journal Voucher"
252 },
253 {
254 "type": "report",
255 "name": "Sales Partners Commission",
256 "is_query_report": True,
257 "doctype": "Sales Invoice"
258 },
259 {
260 "type": "report",
261 "name": "Customer Account Head",
262 "is_query_report": True,
263 "doctype": "Account"
264 },
265 {
266 "type": "report",
267 "name": "Supplier Account Head",
268 "is_query_report": True,
269 "doctype": "Account"
270 },
271 {
272 "type": "report",
273 "name": "Item-wise Sales Register",
274 "is_query_report": True,
275 "doctype": "Sales Invoice"
276 },
277 {
278 "type": "report",
279 "name": "Item-wise Purchase Register",
280 "is_query_report": True,
281 "doctype": "Purchase Invoice"
282 },
283 {
284 "type": "report",
285 "name": "Budget Variance Report",
286 "is_query_report": True,
287 "doctype": "Cost Center"
288 },
289 {
290 "type": "report",
291 "name": "Purchase Invoice Trends",
292 "is_query_report": True,
293 "doctype": "Purchase Invoice"
294 },
295 {
296 "type": "report",
297 "name": "Sales Invoice Trends",
298 "is_query_report": True,
299 "doctype": "Sales Invoice"
300 },
301 ]
302 },
303]