Merge pull request #23994 from rohitwaghchaure/bom-stock-project-item-color-develop

fix: bom stock report color showing always red
This commit is contained in:
rohitwaghchaure 2020-11-24 21:16:51 +05:30 committed by GitHub
commit f38abdeac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ frappe.query_reports["BOM Stock Report"] = {
"formatter": function(value, row, column, data, default_formatter) {
value = default_formatter(value, row, column, data);
if (column.id == "item") {
if (data["Enough Parts to Build"] > 0) {
if (data["enough_parts_to_build"] > 0) {
value = `<a style='color:green' href="#Form/Item/${data['item']}" data-doctype="Item">${data['item']}</a>`;
} else {
value = `<a style='color:red' href="#Form/Item/${data['item']}" data-doctype="Item">${data['item']}</a>`;