From 59186de007c286e5425b79b695469333024fc761 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 31 Jul 2025 21:01:55 +0530 Subject: [PATCH] fix: remove incorrect references from stock entry dashboard/connections tab (cherry picked from commit 6d82e3cc2847186a16159268b1dbd7e04eca2191) # Conflicts: # erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py --- .../stock/doctype/stock_entry/stock_entry_dashboard.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py b/erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py index c1141fe43ec..96e1c19ba4b 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py @@ -8,12 +8,8 @@ def get_data(): "non_standard_fieldnames": { # "DocType Name": "Reference field name", }, - "internal_links": { - "Purchase Order": ["items", "purchase_order"], - "Subcontracting Order": ["items", "subcontracting_order"], - "Subcontracting Receipt": ["items", "subcontracting_receipt"], - }, "transactions": [ +<<<<<<< HEAD { "label": _("Reference"), "items": [ @@ -22,5 +18,8 @@ def get_data(): "Subcontracting Receipt", ], }, +======= + {"label": _("Stock Reservation"), "items": ["Stock Reservation Entry"]}, +>>>>>>> 6d82e3cc28 (fix: remove incorrect references from stock entry dashboard/connections tab) ], }