Skip to content

Commit

Permalink
fix(Supplier Quotation Comparison): group by options
Browse files Browse the repository at this point in the history
(cherry picked from commit 87e36d2)
  • Loading branch information
barredterra authored and mergify[bot] committed Mar 19, 2024
1 parent 93fe136 commit cfed706
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
},
{
Expand Down

0 comments on commit cfed706

Please sign in to comment.