fix: Dashboard for Payment Request

This commit is contained in:
Abdeali Chharchhoda
2024-11-23 15:10:23 +05:30
parent e1c4d6e1e6
commit 91955e27c3

View File

@@ -0,0 +1,14 @@
from frappe import _
def get_data():
return {
"fieldname": "payment_request",
"internal_links": {
"Payment Entry": ["references", "payment_request"],
"Payment Order": ["references", "payment_order"],
},
"transactions": [
{"label": _("Payment"), "items": ["Payment Entry", "Payment Order"]},
],
}