refactor: remove extraneous disabled filters (backport #37732) (#37749)

refactor: remove extraneous disabled filters

(cherry picked from commit f276fbba4f)

Co-authored-by: Bernd Oliver Sünderhauf <46800703+bosue@users.noreply.github.com>
This commit is contained in:
mergify[bot]
2023-10-30 09:57:32 +05:30
committed by GitHub
parent 4819fde8c5
commit 18e40dd032
8 changed files with 1 additions and 30 deletions

View File

@@ -12,7 +12,7 @@ frappe.query_reports["BOM Operations Time"] = {
"options": "Item",
"get_query": () =>{
return {
filters: { "disabled": 0, "is_stock_item": 1 }
filters: { "is_stock_item": 1 }
}
}
},