commit | 6a5a380c07893f45f72f57ff3ac135b48f207ed0 | [log] [tgz] |
---|---|---|
author | Rohit Waghchaure <rohitw1991@gmail.com> | Sun May 02 18:02:28 2021 +0530 |
committer | Rohit Waghchaure <rohitw1991@gmail.com> | Sun May 02 18:02:28 2021 +0530 |
tree | 5199751145e39fe4411af31a612a81c412894d70 | |
parent | e91b0021ac362ae46e894c1f954da743cc476e4b [diff] |
fix: total stock summary report not working
diff --git a/erpnext/stock/report/total_stock_summary/total_stock_summary.py b/erpnext/stock/report/total_stock_summary/total_stock_summary.py index ed52393..59c253c 100644 --- a/erpnext/stock/report/total_stock_summary/total_stock_summary.py +++ b/erpnext/stock/report/total_stock_summary/total_stock_summary.py
@@ -51,7 +51,7 @@ INNER JOIN `tabWarehouse` warehouse ON warehouse.name = ledger.warehouse WHERE - actual_qty != 0 %s""" % (columns, conditions)) + ledger.actual_qty != 0 %s""" % (columns, conditions)) def validate_filters(filters): if filters.get("group_by") == 'Company' and \