fix: incorrect filter for BOM (#44954)

This commit is contained in:
rohitwaghchaure
2024-12-30 09:47:16 +05:30
committed by GitHub
parent e216547084
commit 9fdeb5f826

View File

@@ -2,13 +2,13 @@ frappe.listview_settings["BOM"] = {
add_fields: ["is_active", "is_default", "total_cost", "has_variants"],
get_indicator: function (doc) {
if (doc.is_active && doc.has_variants) {
return [__("Template"), "orange", "has_variants,=,Yes"];
return [__("Template"), "orange", "has_variants,=,1"];
} else if (doc.is_default) {
return [__("Default"), "green", "is_default,=,Yes"];
return [__("Default"), "green", "is_default,=,1"];
} else if (doc.is_active) {
return [__("Active"), "blue", "is_active,=,Yes"];
return [__("Active"), "blue", "is_active,=,1"];
} else if (!doc.is_active) {
return [__("Not active"), "gray", "is_active,=,No"];
return [__("Not active"), "gray", "is_active,=,0"];
}
},
};