fix: rejected qty in PR doesn't consider conversion factor

(cherry picked from commit 343ee9695b)
This commit is contained in:
Mihir Kandoi
2026-01-21 22:33:24 +05:30
committed by Mergify
parent 0b5cc039b6
commit c7c7a55a58

View File

@@ -552,7 +552,7 @@ class StockController(AccountsController):
if is_rejected:
serial_nos = row.get("rejected_serial_no")
type_of_transaction = "Inward" if not self.is_return else "Outward"
qty = row.get("rejected_qty")
qty = row.get("rejected_qty") * row.get("conversion_factor", 1.0)
warehouse = row.get("rejected_warehouse")
if (