Charles-Henri Decultot | bc7a549 | 2018-03-01 06:29:21 +0100 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | from frappe import _ |
| 3 | |
| 4 | def get_data(): |
| 5 | return [ |
| 6 | { |
| 7 | "label": _("Payments"), |
| 8 | "icon": "fa fa-star", |
| 9 | "items": [ |
| 10 | { |
| 11 | "type": "doctype", |
| 12 | "name": "GoCardless Settings", |
| 13 | "description": _("GoCardless payment gateway settings"), |
| 14 | }, |
| 15 | { |
| 16 | "type": "doctype", |
| 17 | "name": "GoCardless Mandate", |
| 18 | "description": _("GoCardless SEPA Mandate"), |
| 19 | } |
| 20 | ] |
Vinayak Jethe | df83148 | 2018-04-03 11:17:03 +0530 | [diff] [blame] | 21 | }, |
| 22 | { |
| 23 | "label": _("Settings"), |
| 24 | "items": [ |
| 25 | { |
| 26 | "type": "doctype", |
| 27 | "name": "Woocommerce Settings" |
Saurabh | d60c0f2 | 2018-05-16 11:33:47 +0530 | [diff] [blame] | 28 | }, |
| 29 | { |
| 30 | "type": "doctype", |
| 31 | "name": "Shopify Settings", |
| 32 | "description": _("Connect Shopify with ERPNext"), |
Pawan Mehta | 6010a10 | 2018-09-05 17:16:57 +0530 | [diff] [blame] | 33 | }, |
| 34 | { |
| 35 | "type": "doctype", |
| 36 | "name": "Amazon MWS Settings", |
| 37 | "description": _("Connect Amazon with ERPNext"), |
Nabin Hait | 34c551d | 2019-07-03 10:34:31 +0530 | [diff] [blame] | 38 | }, |
| 39 | { |
| 40 | "type": "doctype", |
| 41 | "name": "Plaid Settings", |
| 42 | "description": _("Connect your bank accounts to ERPNext"), |
Suraj Shetty | f889982 | 2019-09-13 12:27:00 +0530 | [diff] [blame] | 43 | }, |
| 44 | { |
| 45 | "type": "doctype", |
| 46 | "name": "Exotel Settings", |
| 47 | "description": _("Connect your Exotel Account to ERPNext and track call logs"), |
Vinayak Jethe | df83148 | 2018-04-03 11:17:03 +0530 | [diff] [blame] | 48 | } |
| 49 | ] |
Charles-Henri Decultot | bc7a549 | 2018-03-01 06:29:21 +0100 | [diff] [blame] | 50 | } |
| 51 | ] |