From 356bb7878fc1142b58c698d1cf5665dcfc4b0080 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 27 May 2026 10:29:46 +0530 Subject: [PATCH] fix: material transfer in transit issue --- erpnext/stock/doctype/stock_entry/stock_entry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py index 35557dd0d1e..995e07f74ae 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry.py @@ -3638,12 +3638,12 @@ class StockEntry(StockController, SubcontractingInwardController): args = { "source_dt": "Stock Entry Detail", "target_field": "transferred_qty", - "target_ref_field": "qty", + "target_ref_field": "transfer_qty", "target_dt": "Stock Entry Detail", "join_field": "ste_detail", "target_parent_dt": "Stock Entry", "target_parent_field": "per_transferred", - "source_field": "qty", + "source_field": "transfer_qty", "percent_join_field": "against_stock_entry", }