Merge pull request #40547 from frappe/mergify/bp/version-14-hotfix/pr-40546

fix(Supplier Quotation Comparison): group by options (backport #40546)
This commit is contained in:
Raffael Meyer
2024-03-19 13:07:40 +01:00
committed by GitHub

View File

@@ -77,7 +77,10 @@ frappe.query_reports["Supplier Quotation Comparison"] = {
fieldname: "group_by",
label: __("Group by"),
fieldtype: "Select",
options: [__("Group by Supplier"), __("Group by Item")],
options: [
{ label: __("Group by Supplier"), value: "Group by Supplier" },
{ label: __("Group by Item"), value: "Group by Item" },
],
default: __("Group by Supplier"),
},
{