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 | }, |
| 131 | ] |
| 132 | }, |
| 133 | { |
| 134 | "label": _("Banking and Payments"), |
| 135 | "items": [ |
| 136 | { |
Ankit Javalkar | 8e7ca41 | 2014-09-12 15:18:53 +0530 | [diff] [blame] | 137 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 138 | "label": _("Update Bank Transaction Dates"), |
| 139 | "name": "Bank Reconciliation", |
| 140 | "description": _("Update bank payment dates with journals.") |
| 141 | }, |
| 142 | { |
| 143 | "type": "doctype", |
| 144 | "label": _("Match Payments with Invoices"), |
| 145 | "name": "Payment Reconciliation", |
| 146 | "description": _("Match non-linked Invoices and Payments.") |
| 147 | }, |
| 148 | { |
| 149 | "type": "report", |
| 150 | "name": "Bank Reconciliation Statement", |
| 151 | "is_query_report": True, |
| 152 | "doctype": "Journal Entry" |
| 153 | }, |
| 154 | { |
| 155 | "type": "report", |
| 156 | "name": "Bank Clearance Summary", |
| 157 | "is_query_report": True, |
| 158 | "doctype": "Journal Entry" |
| 159 | }, |
Ishan Loya | 09fe8e0 | 2017-04-25 14:26:33 +0530 | [diff] [blame] | 160 | { |
| 161 | "type": "doctype", |
| 162 | "name": "Bank Guarantee", |
| 163 | "doctype": "Bank Guarantee" |
| 164 | }, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 165 | ] |
| 166 | }, |
| 167 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 168 | "label": _("Taxes"), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 169 | "items": [ |
| 170 | { |
| 171 | "type": "doctype", |
Rushabh Mehta | bcdea3e | 2015-05-06 18:45:47 +0530 | [diff] [blame] | 172 | "name": "Sales Taxes and Charges Template", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 173 | "description": _("Tax template for selling transactions.") |
| 174 | }, |
| 175 | { |
| 176 | "type": "doctype", |
Rushabh Mehta | bcdea3e | 2015-05-06 18:45:47 +0530 | [diff] [blame] | 177 | "name": "Purchase Taxes and Charges Template", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 178 | "description": _("Tax template for buying transactions.") |
| 179 | }, |
| 180 | { |
| 181 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 182 | "name": "Tax Rule", |
| 183 | "description": _("Tax Rule for transactions.") |
| 184 | }, |
| 185 | { |
| 186 | "type": "report", |
| 187 | "name": "Sales Register", |
| 188 | "doctype": "Sales Invoice", |
| 189 | "is_query_report": True |
| 190 | }, |
| 191 | { |
| 192 | "type": "report", |
| 193 | "name": "Purchase Register", |
| 194 | "doctype": "Purchase Invoice", |
| 195 | "is_query_report": True |
| 196 | }, |
| 197 | ] |
| 198 | }, |
| 199 | { |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 200 | "label": _("Goods and Services Tax (GST India)"), |
| 201 | "items": [ |
| 202 | { |
| 203 | "type": "doctype", |
Rushabh Mehta | 00ae424 | 2017-06-27 17:31:41 +0530 | [diff] [blame] | 204 | "name": "GST Settings", |
| 205 | }, |
| 206 | { |
| 207 | "type": "doctype", |
Rushabh Mehta | 919a74a | 2017-06-22 16:37:04 +0530 | [diff] [blame] | 208 | "name": "GST HSN Code", |
| 209 | }, |
| 210 | { |
| 211 | "type": "report", |
| 212 | "name": "GST Sales Register", |
| 213 | "is_query_report": True |
| 214 | }, |
| 215 | { |
| 216 | "type": "report", |
| 217 | "name": "GST Purchase Register", |
| 218 | "is_query_report": True |
| 219 | }, |
| 220 | { |
| 221 | "type": "report", |
| 222 | "name": "GST Itemised Sales Register", |
| 223 | "is_query_report": True |
| 224 | }, |
| 225 | { |
| 226 | "type": "report", |
| 227 | "name": "GST Itemised Purchase Register", |
| 228 | "is_query_report": True |
| 229 | }, |
| 230 | ] |
| 231 | }, |
| 232 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 233 | "label": _("Budget and Cost Center"), |
| 234 | "items": [ |
| 235 | { |
Saurabh | 52ec0ed | 2016-07-05 18:02:38 +0530 | [diff] [blame] | 236 | "type": "doctype", |
| 237 | "name": "Cost Center", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 238 | "icon": "fa fa-sitemap", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 239 | "label": _("Chart of Cost Centers"), |
Saurabh | ec8babe | 2016-06-21 15:55:54 +0530 | [diff] [blame] | 240 | "route": "Tree/Cost Center", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 241 | "description": _("Tree of financial Cost Centers."), |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 242 | }, |
| 243 | { |
Nabin Hait | b9bc7d6 | 2016-05-16 14:38:47 +0530 | [diff] [blame] | 244 | "type": "doctype", |
| 245 | "name": "Budget", |
| 246 | "description": _("Define budget for a financial year.") |
| 247 | }, |
| 248 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 249 | "type": "report", |
| 250 | "name": "Budget Variance Report", |
| 251 | "is_query_report": True, |
| 252 | "doctype": "Cost Center" |
| 253 | }, |
| 254 | { |
| 255 | "type":"doctype", |
| 256 | "name": "Monthly Distribution", |
| 257 | "description": _("Seasonality for setting budgets, targets etc.") |
| 258 | }, |
| 259 | ] |
| 260 | }, |
| 261 | { |
| 262 | "label": _("Tools"), |
| 263 | "items": [ |
| 264 | { |
| 265 | "type": "doctype", |
| 266 | "name": "Period Closing Voucher", |
| 267 | "description": _("Close Balance Sheet and book Profit or Loss.") |
| 268 | }, |
Nabin Hait | 70f05df | 2016-04-25 18:49:17 +0530 | [diff] [blame] | 269 | { |
| 270 | "type": "doctype", |
Saurabh | 066ae8e | 2016-07-05 12:41:20 +0530 | [diff] [blame] | 271 | "name": "Cheque Print Template", |
| 272 | "description": _("Setup cheque dimensions for printing") |
| 273 | }, |
Rushabh Mehta | d3f5d09 | 2017-11-15 16:29:53 +0530 | [diff] [blame] | 274 | { |
| 275 | "type": "doctype", |
| 276 | "name": "Opening Invoice Creation Tool", |
| 277 | "description": _("Make Opening Sales and Purchase Invoices") |
| 278 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 279 | ] |
| 280 | }, |
| 281 | { |
| 282 | "label": _("Setup"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 283 | "icon": "fa fa-cog", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 284 | "items": [ |
| 285 | { |
| 286 | "type": "doctype", |
| 287 | "name": "Accounts Settings", |
| 288 | "description": _("Default settings for accounting transactions.") |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 289 | }, |
| 290 | { |
| 291 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 292 | "name": "Fiscal Year", |
| 293 | "description": _("Financial / accounting year.") |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 294 | }, |
| 295 | { |
| 296 | "type": "doctype", |
| 297 | "name": "Currency", |
| 298 | "description": _("Enable / disable currencies.") |
| 299 | }, |
| 300 | { |
| 301 | "type": "doctype", |
| 302 | "name": "Currency Exchange", |
| 303 | "description": _("Currency exchange rate master.") |
| 304 | }, |
| 305 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 306 | "type": "doctype", |
| 307 | "name": "Payment Gateway Account", |
| 308 | "description": _("Setup Gateway accounts.") |
| 309 | }, |
| 310 | { |
| 311 | "type": "doctype", |
Nabin Hait | 7d4fd35 | 2017-10-05 12:20:33 +0530 | [diff] [blame] | 312 | "name": "POS Settings", |
| 313 | "description": _("Setup mode of POS (Online / Offline)") |
| 314 | }, |
| 315 | { |
| 316 | "type": "doctype", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 317 | "name": "POS Profile", |
| 318 | "label": _("Point-of-Sale Profile"), |
Nabin Hait | 7d4fd35 | 2017-10-05 12:20:33 +0530 | [diff] [blame] | 319 | "description": _("Setup default values for POS Invoices") |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 320 | }, |
| 321 | { |
| 322 | "type": "doctype", |
| 323 | "name":"Terms and Conditions", |
| 324 | "label": _("Terms and Conditions Template"), |
| 325 | "description": _("Template of terms or contract.") |
| 326 | }, |
| 327 | { |
| 328 | "type": "doctype", |
| 329 | "name":"Mode of Payment", |
| 330 | "description": _("e.g. Bank, Cash, Credit Card") |
| 331 | }, |
| 332 | { |
| 333 | "type": "doctype", |
| 334 | "name":"C-Form", |
| 335 | "description": _("C-Form records"), |
| 336 | "country": "India" |
| 337 | } |
| 338 | ] |
| 339 | }, |
| 340 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 341 | "label": _("To Bill"), |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 342 | "items": [ |
| 343 | { |
| 344 | "type": "report", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 345 | "name": "Ordered Items To Be Billed", |
| 346 | "is_query_report": True, |
| 347 | "doctype": "Sales Invoice" |
| 348 | }, |
| 349 | { |
| 350 | "type": "report", |
| 351 | "name": "Delivered Items To Be Billed", |
| 352 | "is_query_report": True, |
| 353 | "doctype": "Sales Invoice" |
| 354 | }, |
| 355 | { |
| 356 | "type": "report", |
| 357 | "name": "Purchase Order Items To Be Billed", |
| 358 | "is_query_report": True, |
| 359 | "doctype": "Purchase Invoice" |
| 360 | }, |
| 361 | { |
| 362 | "type": "report", |
| 363 | "name": "Received Items To Be Billed", |
| 364 | "is_query_report": True, |
| 365 | "doctype": "Purchase Invoice" |
| 366 | }, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 367 | ] |
| 368 | |
| 369 | }, |
| 370 | { |
| 371 | "label": _("Analytics"), |
| 372 | "items": [ |
| 373 | { |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 374 | "type": "report", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 375 | "name": "Gross Profit", |
| 376 | "doctype": "Sales Invoice", |
| 377 | "is_query_report": True |
| 378 | }, |
| 379 | { |
| 380 | "type": "report", |
| 381 | "name": "Purchase Invoice Trends", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 382 | "is_query_report": True, |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 383 | "doctype": "Purchase Invoice" |
| 384 | }, |
| 385 | { |
| 386 | "type": "report", |
| 387 | "name": "Sales Invoice Trends", |
| 388 | "is_query_report": True, |
| 389 | "doctype": "Sales Invoice" |
| 390 | }, |
| 391 | ] |
| 392 | }, |
| 393 | { |
| 394 | "label": _("Other Reports"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 395 | "icon": "fa fa-table", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 396 | "items": [ |
| 397 | { |
| 398 | "type": "report", |
| 399 | "name": "Trial Balance for Party", |
| 400 | "doctype": "GL Entry", |
| 401 | "is_query_report": True, |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 402 | }, |
| 403 | { |
| 404 | "type": "report", |
Nabin Hait | fd23fa7 | 2016-11-21 16:57:39 +0530 | [diff] [blame] | 405 | "name": "Profitability Analysis", |
| 406 | "doctype": "GL Entry", |
| 407 | "is_query_report": True, |
| 408 | }, |
| 409 | { |
| 410 | "type": "report", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 411 | "name": "Payment Period Based On Invoice Date", |
| 412 | "is_query_report": True, |
Nabin Hait | 23d2a53 | 2014-12-25 17:14:18 +0530 | [diff] [blame] | 413 | "doctype": "Journal Entry" |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 414 | }, |
| 415 | { |
| 416 | "type": "report", |
| 417 | "name": "Sales Partners Commission", |
| 418 | "is_query_report": True, |
| 419 | "doctype": "Sales Invoice" |
| 420 | }, |
| 421 | { |
| 422 | "type": "report", |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 423 | "name": "Item-wise Sales Register", |
| 424 | "is_query_report": True, |
| 425 | "doctype": "Sales Invoice" |
| 426 | }, |
| 427 | { |
| 428 | "type": "report", |
| 429 | "name": "Item-wise Purchase Register", |
| 430 | "is_query_report": True, |
| 431 | "doctype": "Purchase Invoice" |
| 432 | }, |
| 433 | { |
| 434 | "type": "report", |
Nabin Hait | e637086 | 2014-10-30 15:50:03 +0530 | [diff] [blame] | 435 | "name": "Accounts Receivable Summary", |
| 436 | "doctype": "Sales Invoice", |
| 437 | "is_query_report": True |
| 438 | }, |
| 439 | { |
| 440 | "type": "report", |
ankitjavalkarwork | e6e65b0 | 2014-11-04 14:36:50 +0530 | [diff] [blame] | 441 | "name": "Accounts Payable Summary", |
| 442 | "doctype": "Purchase Invoice", |
| 443 | "is_query_report": True |
| 444 | }, |
| 445 | { |
| 446 | "type": "report", |
Nabin Hait | e637086 | 2014-10-30 15:50:03 +0530 | [diff] [blame] | 447 | "is_query_report": True, |
| 448 | "name": "Customer Credit Balance", |
| 449 | "doctype": "Customer" |
| 450 | }, |
pawan | e61a275 | 2017-11-02 17:53:24 +0530 | [diff] [blame] | 451 | { |
| 452 | "type": "report", |
| 453 | "is_query_report": True, |
pawan | 8d1d64a | 2017-11-03 21:52:07 +0530 | [diff] [blame] | 454 | "name": "Sales Payment Summary", |
pawan | e61a275 | 2017-11-02 17:53:24 +0530 | [diff] [blame] | 455 | "doctype": "Sales Invoice" |
| 456 | } |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 457 | ] |
| 458 | }, |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 459 | { |
| 460 | "label": _("Help"), |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 461 | "icon": "fa fa-facetime-video", |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 462 | "items": [ |
| 463 | { |
| 464 | "type": "help", |
| 465 | "label": _("Chart of Accounts"), |
| 466 | "youtube_id": "DyR-DST-PyA" |
| 467 | }, |
| 468 | { |
| 469 | "type": "help", |
| 470 | "label": _("Opening Accounting Balance"), |
| 471 | "youtube_id": "kdgM20Q-q68" |
| 472 | }, |
| 473 | { |
| 474 | "type": "help", |
| 475 | "label": _("Setting up Taxes"), |
| 476 | "youtube_id": "nQ1zZdPgdaQ" |
| 477 | } |
| 478 | ] |
| 479 | } |
Anand Doshi | 08ef467 | 2014-05-08 11:43:18 +0530 | [diff] [blame] | 480 | ] |