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