From 5aaefec7479418650eb58ca8e8cdc17c89afa9d3 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Sat, 1 Aug 2026 08:52:23 +0530 Subject: [PATCH] feat: show the UOM alongside the quantity in the supplier selection dialog The quantity is meaningless without the unit it is counted in, which the buyer had to look up on the Material Request itself. (cherry picked from commit d0cae2eb9c7e8a26175777fe30c750d9682a4db4) --- .../doctype/material_request/material_request.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/material_request/material_request.js b/erpnext/stock/doctype/material_request/material_request.js index 62bdb23fd4c..b3853c43218 100644 --- a/erpnext/stock/doctype/material_request/material_request.js +++ b/erpnext/stock/doctype/material_request/material_request.js @@ -494,7 +494,16 @@ frappe.ui.form.on("Material Request", { label: __("Quantity"), reqd: 1, in_list_view: 1, - columns: 2, + columns: 1, + }, + { + fieldtype: "Link", + fieldname: "uom", + options: "UOM", + label: __("UOM"), + read_only: 1, + in_list_view: 1, + columns: 1, }, { fieldtype: "Link",