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 d0cae2eb9c)
This commit is contained in:
Mihir Kandoi
2026-08-01 08:52:23 +05:30
committed by Mergify
parent d2fe4b623c
commit 5aaefec747

View File

@@ -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",