d60c0f2292
* move shopify settings to ERPNext * [fix] setup webhook for order and validate webhook request * validate webhook request * sync customer and item if not exists while syncing order from shopify * pull item from shopify and minor fixes * fix method naming, mechanisim to register and withdraw webhooks, patch * minor fix * minor fixes * [Patch][fix] use remove_from_installed_apps instead of remove app * log exceptions * add shopify logging for failed requests * minor fixes * fix test case * codecy fixes * check shared secret exists * Test Case fixes * UX fixes and patch fixes * Documentation * fixes * [fix] dump webhooks request data into doctype * Provision to resync the order if error occured in sync * [fix] set default host
37 lines
678 B
Python
37 lines
678 B
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"label": _("Payments"),
|
|
"icon": "fa fa-star",
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "GoCardless Settings",
|
|
"description": _("GoCardless payment gateway settings"),
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "GoCardless Mandate",
|
|
"description": _("GoCardless SEPA Mandate"),
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"label": _("Settings"),
|
|
"items": [
|
|
{
|
|
"type": "doctype",
|
|
"name": "Woocommerce Settings"
|
|
},
|
|
{
|
|
"type": "doctype",
|
|
"name": "Shopify Settings",
|
|
"description": _("Connect Shopify with ERPNext"),
|
|
}
|
|
]
|
|
}
|
|
]
|