commit | 5770ad9e8cde3e1a76c75b0bbbd6e9f52f9028f5 | [log] [tgz] |
---|---|---|
author | Rushabh Mehta <rmehta@gmail.com> | Mon Mar 25 12:03:53 2019 +0530 |
committer | GitHub <noreply@github.com> | Mon Mar 25 12:03:53 2019 +0530 |
tree | 3a76b7daeb18b1294a30b5d4525f6aca29eb0283 | |
parent | 6fabcdd5b383ca4976d3e0853e75b64af99862b2 [diff] | |
parent | 8aafbd22def417035fac5e9b3dd978de08a7d984 [diff] |
Merge pull request #16963 from itusedyetnew/develop Fix:stock_values_on removed append function on string
diff --git a/erpnext/stock/utils.py b/erpnext/stock/utils.py index c89fc10..76631fa 100644 --- a/erpnext/stock/utils.py +++ b/erpnext/stock/utils.py
@@ -56,7 +56,7 @@ if item_code: values.append(item_code) - condition.append(" AND item_code = %s") + condition += " AND item_code = %s" stock_ledger_entries = frappe.db.sql(""" SELECT item_code, stock_value, name, warehouse