fix: Dashboard for Payment Request

(cherry picked from commit 91955e27c3)
This commit is contained in:
Abdeali Chharchhoda
2024-11-23 15:10:23 +05:30
committed by Mergify
parent e2728db5c2
commit c911a70a84

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"]},
],
}