From d0cae2eb9c7e8a26175777fe30c750d9682a4db4 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. --- .../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 7df26d35851..53a8f1120ab 100644 --- a/erpnext/stock/doctype/material_request/material_request.js +++ b/erpnext/stock/doctype/material_request/material_request.js @@ -488,7 +488,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",