Indicator fix for stock entry item table
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js
index d4be6b4..2321542 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry.js
+++ b/erpnext/stock/doctype/stock_entry/stock_entry.js
@@ -106,8 +106,8 @@
frm.trigger("toggle_display_account_head");
}
- if(frm.doc.docstatus==1 && frm.doc.purpose == "Material Receipt") {
- frm.add_custom_button(__('Make Retention Stock Entry'), function () {
+ if(frm.doc.docstatus==1 && frm.doc.purpose == "Material Receipt" && frm.get_sum('items', 'sample_quantity')) {
+ frm.add_custom_button(__('Make Sample Retention Stock Entry'), function () {
frm.trigger("make_retention_stock_entry");
});
}
@@ -465,7 +465,13 @@
}
this.frm.set_indicator_formatter('item_code',
- function(doc) { return (doc.qty<=doc.actual_qty) ? "green" : "orange" })
+ function(doc) {
+ if (!doc.s_warehouse) {
+ return 'blue';
+ } else {
+ return (doc.qty<=doc.actual_qty) ? "green" : "orange"
+ }
+ })
this.frm.add_fetch("purchase_order", "supplier", "supplier");