blob: 01e077fba39613c78b27364dbf75edd8603842d5 [file] [log] [blame]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +01001from __future__ import unicode_literals
2from frappe import _
3
4def 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 Jethedf831482018-04-03 11:17:03 +053021 },
22 {
23 "label": _("Settings"),
24 "items": [
25 {
26 "type": "doctype",
27 "name": "Woocommerce Settings"
Saurabhd60c0f22018-05-16 11:33:47 +053028 },
29 {
30 "type": "doctype",
31 "name": "Shopify Settings",
32 "description": _("Connect Shopify with ERPNext"),
Pawan Mehta6010a102018-09-05 17:16:57 +053033 },
34 {
35 "type": "doctype",
36 "name": "Amazon MWS Settings",
37 "description": _("Connect Amazon with ERPNext"),
Vinayak Jethedf831482018-04-03 11:17:03 +053038 }
39 ]
Charles-Henri Decultotbc7a5492018-03-01 06:29:21 +010040 }
41 ]