commit | 27bac2aaecfc831d899903f886a1feb3de357b91 | [log] [tgz] |
---|---|---|
author | marination <maricadsouza221197@gmail.com> | Thu Jan 28 12:04:14 2021 +0530 |
committer | marination <maricadsouza221197@gmail.com> | Thu Jan 28 12:04:14 2021 +0530 |
tree | 866e711693f13aa4a7f030de763c15f517528ebf | |
parent | bc370b3ee586d97c2fd5c9db74a0718d4fff2d10 [diff] |
fix: Missing semi-colon
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index cb6cab3..bc1d089 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js
@@ -9,7 +9,7 @@ if (!doc.s_warehouse) { return 'blue'; } else { - return (doc.qty<=doc.actual_qty) ? 'green' : 'orange' + return (doc.qty<=doc.actual_qty) ? 'green' : 'orange'; } });