Anand Doshi | d57e793 | 2015-02-24 12:24:53 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 2 | from frappe import _ |
| 3 | |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 4 | def get_data(): |
| 5 | return [ |
| 6 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 7 | "label": _("Billing"), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 8 | "items": [ |
| 9 | { |
| 10 | "type": "doctype", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 11 | "name": "Sales Invoice", |
| 12 | "description": _("Bills raised to Customers.") |
| 13 | }, |
| 14 | { |
| 15 | "type": "doctype", |
| 16 | "name": "Purchase Invoice", |
| 17 | "description": _("Bills raised by Suppliers.") |
| 18 | }, |
| 19 | { |
| 20 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 21 | "name": "Payment Request", |
| 22 | "description": _("Payment Request") |
| 23 | }, |
| 24 | { |
Nabin Hait | e4bbb69 | 2016-07-04 16:16:24 +0530 | [diff] [blame] | 25 | "type": "doctype", |
| 26 | "name": "Payment Entry", |
| 27 | "description": _("Bank/Cash transactions against party or for internal transfer") |
| 28 | }, |
| 29 | { |
Nabin Hait | 3bb1a42 | 2016-08-02 16:41:10 +0530 | [diff] [blame] | 30 | "type": "page", |
| 31 | "name": "pos", |
| 32 | "label": _("POS"), |
| 33 | "description": _("Point of Sale") |
| 34 | }, |
| 35 | { |
rohitwaghchaure | dd092e3 | 2017-09-15 16:16:36 +0530 | [diff] [blame] | 36 | "type": "doctype", |
| 37 | "name": "Subscription", |
| 38 | "label": _("Subscription"), |
| 39 | "description": _("To make recurring documents") |
| 40 | }, |
| 41 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 42 | "type": "report", |
| 43 | "name": "Accounts Receivable", |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 44 | "doctype": "Sales Invoice", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 45 | "is_query_report": True |
| 46 | }, |
| 47 | { |
| 48 | "type": "report", |
| 49 | "name": "Accounts Payable", |
| 50 | "doctype": "Purchase Invoice", |
| 51 | "is_query_report": True |
| 52 | }, |
| 53 | ] |
| 54 | |
| 55 | }, |
| 56 | { |
| 57 | "label": _("Company and Accounts"), |
| 58 | "items": [ |
| 59 | { |
| 60 | "type": "doctype", |
| 61 | "name": "Company", |
| 62 | "description": _("Company (not Customer or Supplier) master.") |
| 63 | }, |
| 64 | { |
| 65 | "type": "doctype", |
| 66 | "name": "Journal Entry", |
| 67 | "description": _("Accounting journal entries.") |
| 68 | }, |
| 69 | { |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 70 | "type": "doctype", |
| 71 | "name": "Account", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 72 | "icon": "fa fa-sitemap", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 73 | "label": _("Chart of Accounts"), |
Saurabh | 1702273 | 2016-06-21 13:19:17 +0530 | [diff] [blame] | 74 | "route": "Tree/Account", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 75 | "description": _("Tree of financial accounts."), |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 76 | }, |
| 77 | { |
| 78 | "type": "report", |
| 79 | "name":"General Ledger", |
| 80 | "doctype": "GL Entry", |
| 81 | "is_query_report": True, |
| 82 | }, |
| 83 | ] |
| 84 | }, |
| 85 | { |
| 86 | "label": _("Masters"), |
| 87 | "items": [ |
| 88 | { |
| 89 | "type": "doctype", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 90 | "name": "Customer", |
| 91 | "description": _("Customer database.") |
| 92 | }, |
| 93 | { |
| 94 | "type": "doctype", |
| 95 | "name": "Supplier", |
| 96 | "description": _("Supplier database.") |
| 97 | }, |
| 98 | { |
Saurabh | 3ba2267 | 2015-12-21 18:24:49 +0530 | [diff] [blame] | 99 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 100 | "name": "Item", |
Nabin Hait | 9501a1e | 2016-03-30 15:06:19 +0530 | [diff] [blame] | 101 | } |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 102 | ] |
| 103 | }, |
| 104 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 105 | "label": _("Accounting Statements"), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 106 | "items": [ |
| 107 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 108 | "type": "report", |
| 109 | "name": "Trial Balance", |
| 110 | "doctype": "GL Entry", |
| 111 | "is_query_report": True, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 112 | }, |
ankitjavalkarwork | b0cffac | 2014-07-22 15:02:59 +0530 | [diff] [blame] | 113 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 114 | "type": "report", |
| 115 | "name": "Balance Sheet", |
| 116 | "doctype": "GL Entry", |
| 117 | "is_query_report": True |
ankitjavalkarwork | b0cffac | 2014-07-22 15:02:59 +0530 | [diff] [blame] | 118 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 119 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 120 | "type": "report", |
| 121 | "name": "Cash Flow", |
| 122 | "doctype": "GL Entry", |
| 123 | "is_query_report": True |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 124 | }, |
Ankit Javalkar | 8e7ca41 | 2014-09-12 15:18:53 +0530 | [diff] [blame] | 125 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 126 | "type": "report", |
| 127 | "name": "Profit and Loss Statement", |
| 128 | "doctype": "GL Entry", |
| 129 | "is_query_report": True |
| 130 | }, |
rohitwaghchaure | efff6e5 | 2018-04-18 10:52:07 +0530 | [diff] [blame] | 131 | { |
| 132 | "type": "report", |
| 133 | "name": "Consolidated Financial Statement", |
| 134 | "doctype": "GL Entry", |
| 135 | "is_query_report": True |
| 136 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 137 | ] |
| 138 | }, |
| 139 | { |
| 140 | "label": _("Banking and Payments"), |
| 141 | "items": [ |
| 142 | { |
Ankit Javalkar | 8e7ca41 | 2014-09-12 15:18:53 +0530 | [diff] [blame] | 143 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 144 | "label": _("Update Bank Transaction Dates"), |
| 145 | "name": "Bank Reconciliation", |
| 146 | "description": _("Update bank payment dates with journals.") |
| 147 | }, |
| 148 | { |
| 149 | "type": "doctype", |
| 150 | "label": _("Match Payments with Invoices"), |
| 151 | "name": "Payment Reconciliation", |
| 152 | "description": _("Match non-linked Invoices and Payments.") |
| 153 | }, |
| 154 | { |
| 155 | "type": "report", |
| 156 | "name": "Bank Reconciliation Statement", |
| 157 | "is_query_report": True, |
| 158 | "doctype": "Journal Entry" |
| 159 | }, |
| 160 | { |
| 161 | "type": "report", |
| 162 | "name": "Bank Clearance Summary", |
| 163 | "is_query_report": True, |
| 164 | "doctype": "Journal Entry" |
| 165 | }, |
Ishan Loya | 09fe8e0 | 2017-04-25 14:26:33 +0530 | [diff] [blame] | 166 | { |
| 167 | "type": "doctype", |
| 168 | "name": "Bank Guarantee", |
| 169 | "doctype": "Bank Guarantee" |
| 170 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 171 | ] |
| 172 | }, |
| 173 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 174 | "label": _("Taxes"), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 175 | "items": [ |
| 176 | { |
| 177 | "type": "doctype", |
Rushabh Mehta | bcdea3e | 2015-05-06 18:45:47 +0530 | [diff] [blame] | 178 | "name": "Sales Taxes and Charges Template", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 179 | "description": _("Tax template for selling transactions.") |
| 180 | }, |
| 181 | { |
| 182 | "type": "doctype", |
Rushabh Mehta | bcdea3e | 2015-05-06 18:45:47 +0530 | [diff] [blame] | 183 | "name": "Purchase Taxes and Charges Template", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 184 | "description": _("Tax template for buying transactions.") |
| 185 | }, |
| 186 | { |
| 187 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 188 | "name": "Tax Rule", |
| 189 | "description": _("Tax Rule for transactions.") |
| 190 | }, |
| 191 | { |
| 192 | "type": "report", |
| 193 | "name": "Sales Register", |
| 194 | "doctype": "Sales Invoice", |
| 195 | "is_query_report": True |
| 196 | }, |
| 197 | { |
| 198 | "type": "report", |
| 199 | "name": "Purchase Register", |
| 200 | "doctype": "Purchase Invoice", |
| 201 | "is_query_report": True |
| 202 | }, |
| 203 | ] |
| 204 | }, |
| 205 | { |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 206 | "label": _("Goods and Services Tax (GST India)"), |
| 207 | "items": [ |
| 208 | { |
| 209 | "type": "doctype", |
Rushabh Mehta | 00ae424 | 2017-06-27 17:31:41 +0530 | [diff] [blame] | 210 | "name": "GST Settings", |
| 211 | }, |
| 212 | { |
| 213 | "type": "doctype", |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 214 | "name": "GST HSN Code", |
| 215 | }, |
| 216 | { |
| 217 | "type": "report", |
| 218 | "name": "GST Sales Register", |
| 219 | "is_query_report": True |
| 220 | }, |
| 221 | { |
| 222 | "type": "report", |
| 223 | "name": "GST Purchase Register", |
| 224 | "is_query_report": True |
| 225 | }, |
| 226 | { |
| 227 | "type": "report", |
| 228 | "name": "GST Itemised Sales Register", |
| 229 | "is_query_report": True |
| 230 | }, |
| 231 | { |
| 232 | "type": "report", |
| 233 | "name": "GST Itemised Purchase Register", |
| 234 | "is_query_report": True |
| 235 | }, |
| 236 | ] |
| 237 | }, |
| 238 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 239 | "label": _("Budget and Cost Center"), |
| 240 | "items": [ |
| 241 | { |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 242 | "type": "doctype", |
| 243 | "name": "Cost Center", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 244 | "icon": "fa fa-sitemap", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 245 | "label": _("Chart of Cost Centers"), |
Saurabh | ec8babe | 2016-06-21 15:55:54 +0530 | [diff] [blame] | 246 | "route": "Tree/Cost Center", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 247 | "description": _("Tree of financial Cost Centers."), |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 248 | }, |
| 249 | { |
Nabin Hait | b9bc7d6 | 2016-05-16 14:38:47 +0530 | [diff] [blame] | 250 | "type": "doctype", |
| 251 | "name": "Budget", |
| 252 | "description": _("Define budget for a financial year.") |
| 253 | }, |
| 254 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 255 | "type": "report", |
| 256 | "name": "Budget Variance Report", |
| 257 | "is_query_report": True, |
| 258 | "doctype": "Cost Center" |
| 259 | }, |
| 260 | { |
| 261 | "type":"doctype", |
| 262 | "name": "Monthly Distribution", |
| 263 | "description": _("Seasonality for setting budgets, targets etc.") |
| 264 | }, |
| 265 | ] |
| 266 | }, |
| 267 | { |
| 268 | "label": _("Tools"), |
| 269 | "items": [ |
| 270 | { |
| 271 | "type": "doctype", |
| 272 | "name": "Period Closing Voucher", |
| 273 | "description": _("Close Balance Sheet and book Profit or Loss.") |
| 274 | }, |
Nabin Hait | 70f05df | 2016-04-25 18:49:17 +0530 | [diff] [blame] | 275 | { |
| 276 | "type": "doctype", |
Saurabh | 066ae8e | 2016-07-05 12:41:20 +0530 | [diff] [blame] | 277 | "name": "Cheque Print Template", |
| 278 | "description": _("Setup cheque dimensions for printing") |
| 279 | }, |
Rushabh Mehta | d3f5d09 | 2017-11-15 16:29:53 +0530 | [diff] [blame] | 280 | { |
| 281 | "type": "doctype", |
| 282 | "name": "Opening Invoice Creation Tool", |
| 283 | "description": _("Make Opening Sales and Purchase Invoices") |
| 284 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 285 | ] |
| 286 | }, |
| 287 | { |
| 288 | "label": _("Setup"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 289 | "icon": "fa fa-cog", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 290 | "items": [ |
| 291 | { |
| 292 | "type": "doctype", |
| 293 | "name": "Accounts Settings", |
| 294 | "description": _("Default settings for accounting transactions.") |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 295 | }, |
| 296 | { |
| 297 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 298 | "name": "Fiscal Year", |
| 299 | "description": _("Financial / accounting year.") |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 300 | }, |
| 301 | { |
| 302 | "type": "doctype", |
| 303 | "name": "Currency", |
| 304 | "description": _("Enable / disable currencies.") |
| 305 | }, |
| 306 | { |
| 307 | "type": "doctype", |
| 308 | "name": "Currency Exchange", |
| 309 | "description": _("Currency exchange rate master.") |
| 310 | }, |
| 311 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 312 | "type": "doctype", |
| 313 | "name": "Payment Gateway Account", |
| 314 | "description": _("Setup Gateway accounts.") |
| 315 | }, |
| 316 | { |
| 317 | "type": "doctype", |
Nabin Hait | 7d4fd35 | 2017-10-05 12:20:33 +0530 | [diff] [blame] | 318 | "name": "POS Settings", |
| 319 | "description": _("Setup mode of POS (Online / Offline)") |
| 320 | }, |
| 321 | { |
| 322 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 323 | "name": "POS Profile", |
| 324 | "label": _("Point-of-Sale Profile"), |
Nabin Hait | 7d4fd35 | 2017-10-05 12:20:33 +0530 | [diff] [blame] | 325 | "description": _("Setup default values for POS Invoices") |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 326 | }, |
| 327 | { |
| 328 | "type": "doctype", |
| 329 | "name":"Terms and Conditions", |
| 330 | "label": _("Terms and Conditions Template"), |
| 331 | "description": _("Template of terms or contract.") |
| 332 | }, |
| 333 | { |
| 334 | "type": "doctype", |
| 335 | "name":"Mode of Payment", |
| 336 | "description": _("e.g. Bank, Cash, Credit Card") |
| 337 | }, |
| 338 | { |
| 339 | "type": "doctype", |
| 340 | "name":"C-Form", |
| 341 | "description": _("C-Form records"), |
| 342 | "country": "India" |
| 343 | } |
| 344 | ] |
| 345 | }, |
| 346 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 347 | "label": _("To Bill"), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 348 | "items": [ |
| 349 | { |
| 350 | "type": "report", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 351 | "name": "Ordered Items To Be Billed", |
| 352 | "is_query_report": True, |
| 353 | "doctype": "Sales Invoice" |
| 354 | }, |
| 355 | { |
| 356 | "type": "report", |
| 357 | "name": "Delivered Items To Be Billed", |
| 358 | "is_query_report": True, |
| 359 | "doctype": "Sales Invoice" |
| 360 | }, |
| 361 | { |
| 362 | "type": "report", |
| 363 | "name": "Purchase Order Items To Be Billed", |
| 364 | "is_query_report": True, |
| 365 | "doctype": "Purchase Invoice" |
| 366 | }, |
| 367 | { |
| 368 | "type": "report", |
| 369 | "name": "Received Items To Be Billed", |
| 370 | "is_query_report": True, |
| 371 | "doctype": "Purchase Invoice" |
| 372 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 373 | ] |
| 374 | |
| 375 | }, |
| 376 | { |
| 377 | "label": _("Analytics"), |
| 378 | "items": [ |
| 379 | { |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 380 | "type": "report", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 381 | "name": "Gross Profit", |
| 382 | "doctype": "Sales Invoice", |
| 383 | "is_query_report": True |
| 384 | }, |
| 385 | { |
| 386 | "type": "report", |
| 387 | "name": "Purchase Invoice Trends", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 388 | "is_query_report": True, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 389 | "doctype": "Purchase Invoice" |
| 390 | }, |
| 391 | { |
| 392 | "type": "report", |
| 393 | "name": "Sales Invoice Trends", |
| 394 | "is_query_report": True, |
| 395 | "doctype": "Sales Invoice" |
| 396 | }, |
| 397 | ] |
| 398 | }, |
| 399 | { |
| 400 | "label": _("Other Reports"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 401 | "icon": "fa fa-table", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 402 | "items": [ |
| 403 | { |
| 404 | "type": "report", |
| 405 | "name": "Trial Balance for Party", |
| 406 | "doctype": "GL Entry", |
| 407 | "is_query_report": True, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 408 | }, |
| 409 | { |
| 410 | "type": "report", |
Nabin Hait | fd23fa7 | 2016-11-21 16:57:39 +0530 | [diff] [blame] | 411 | "name": "Profitability Analysis", |
| 412 | "doctype": "GL Entry", |
| 413 | "is_query_report": True, |
| 414 | }, |
| 415 | { |
| 416 | "type": "report", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 417 | "name": "Payment Period Based On Invoice Date", |
| 418 | "is_query_report": True, |
Nabin Hait | 23d2a53 | 2014-12-25 17:14:18 +0530 | [diff] [blame] | 419 | "doctype": "Journal Entry" |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 420 | }, |
| 421 | { |
| 422 | "type": "report", |
| 423 | "name": "Sales Partners Commission", |
| 424 | "is_query_report": True, |
| 425 | "doctype": "Sales Invoice" |
| 426 | }, |
| 427 | { |
| 428 | "type": "report", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 429 | "name": "Item-wise Sales Register", |
| 430 | "is_query_report": True, |
| 431 | "doctype": "Sales Invoice" |
| 432 | }, |
| 433 | { |
| 434 | "type": "report", |
| 435 | "name": "Item-wise Purchase Register", |
| 436 | "is_query_report": True, |
| 437 | "doctype": "Purchase Invoice" |
| 438 | }, |
| 439 | { |
| 440 | "type": "report", |
Nabin Hait | e637086 | 2014-10-30 15:50:03 +0530 | [diff] [blame] | 441 | "name": "Accounts Receivable Summary", |
| 442 | "doctype": "Sales Invoice", |
| 443 | "is_query_report": True |
| 444 | }, |
| 445 | { |
| 446 | "type": "report", |
ankitjavalkarwork | e6e65b0 | 2014-11-04 14:36:50 +0530 | [diff] [blame] | 447 | "name": "Accounts Payable Summary", |
| 448 | "doctype": "Purchase Invoice", |
| 449 | "is_query_report": True |
| 450 | }, |
| 451 | { |
| 452 | "type": "report", |
Nabin Hait | e637086 | 2014-10-30 15:50:03 +0530 | [diff] [blame] | 453 | "is_query_report": True, |
| 454 | "name": "Customer Credit Balance", |
| 455 | "doctype": "Customer" |
| 456 | }, |
pawan | e61a275 | 2017-11-02 17:53:24 +0530 | [diff] [blame] | 457 | { |
| 458 | "type": "report", |
| 459 | "is_query_report": True, |
pawan | 8d1d64a | 2017-11-03 21:52:07 +0530 | [diff] [blame] | 460 | "name": "Sales Payment Summary", |
pawan | e61a275 | 2017-11-02 17:53:24 +0530 | [diff] [blame] | 461 | "doctype": "Sales Invoice" |
| 462 | } |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 463 | ] |
| 464 | }, |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 465 | { |
Ameya Shenoy | 5c33a04 | 2018-02-12 11:32:47 +0530 | [diff] [blame] | 466 | "label": _("Share Management"), |
| 467 | "icon": "fa fa-microchip ", |
| 468 | "items": [ |
| 469 | { |
| 470 | "type": "doctype", |
| 471 | "name":"Shareholder", |
| 472 | "description": _("List of available Shareholders with folio numbers") |
| 473 | }, |
| 474 | { |
| 475 | "type": "doctype", |
| 476 | "name":"Share Transfer", |
| 477 | "description": _("List of all share transactions"), |
| 478 | }, |
| 479 | { |
| 480 | "type": "report", |
| 481 | "name": "Share Ledger", |
| 482 | "doctype": "Share Transfer", |
| 483 | "is_query_report": True |
| 484 | }, |
| 485 | { |
| 486 | "type": "report", |
| 487 | "name": "Share Balance", |
| 488 | "doctype": "Share Transfer", |
| 489 | "is_query_report": True |
| 490 | } |
| 491 | ] |
| 492 | }, |
| 493 | { |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 494 | "label": _("Help"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 495 | "icon": "fa fa-facetime-video", |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 496 | "items": [ |
| 497 | { |
| 498 | "type": "help", |
| 499 | "label": _("Chart of Accounts"), |
| 500 | "youtube_id": "DyR-DST-PyA" |
| 501 | }, |
| 502 | { |
| 503 | "type": "help", |
| 504 | "label": _("Opening Accounting Balance"), |
| 505 | "youtube_id": "kdgM20Q-q68" |
| 506 | }, |
| 507 | { |
| 508 | "type": "help", |
| 509 | "label": _("Setting up Taxes"), |
| 510 | "youtube_id": "nQ1zZdPgdaQ" |
| 511 | } |
| 512 | ] |
| 513 | } |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 514 | ] |