Skip to content

Commit

Permalink
fix: Work Order filter typo in Job Card Summary Report
Browse files Browse the repository at this point in the history
(cherry picked from commit 2e4f3e9)
  • Loading branch information
s-aga-r authored and mergify[bot] committed Nov 26, 2022
1 parent bc649b3 commit b157193
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -54,11 +54,11 @@ frappe.query_reports["Job Card Summary"] = {
options: ["", "Open", "Work In Progress", "Completed", "On Hold"]
},
{
label: __("Sales Orders"),
fieldname: "sales_order",
label: __("Work Orders"),
fieldname: "work_order",
fieldtype: "MultiSelectList",
get_data: function(txt) {
return frappe.db.get_link_options('Sales Order', txt);
return frappe.db.get_link_options('Work Order', txt);
}
},
{
Expand Down

0 comments on commit b157193

Please sign in to comment.