mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-13 23:38:01 +00:00
fix: incorrect filter for BOM (#44954)
(cherry picked from commit 9fdeb5f826)
Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
This commit is contained in:
@@ -2,13 +2,13 @@ frappe.listview_settings["BOM"] = {
|
|||||||
add_fields: ["is_active", "is_default", "total_cost", "has_variants"],
|
add_fields: ["is_active", "is_default", "total_cost", "has_variants"],
|
||||||
get_indicator: function (doc) {
|
get_indicator: function (doc) {
|
||||||
if (doc.is_active && doc.has_variants) {
|
if (doc.is_active && doc.has_variants) {
|
||||||
return [__("Template"), "orange", "has_variants,=,Yes"];
|
return [__("Template"), "orange", "has_variants,=,1"];
|
||||||
} else if (doc.is_default) {
|
} else if (doc.is_default) {
|
||||||
return [__("Default"), "green", "is_default,=,Yes"];
|
return [__("Default"), "green", "is_default,=,1"];
|
||||||
} else if (doc.is_active) {
|
} else if (doc.is_active) {
|
||||||
return [__("Active"), "blue", "is_active,=,Yes"];
|
return [__("Active"), "blue", "is_active,=,1"];
|
||||||
} else if (!doc.is_active) {
|
} else if (!doc.is_active) {
|
||||||
return [__("Not active"), "gray", "is_active,=,No"];
|
return [__("Not active"), "gray", "is_active,=,0"];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user