commit | 9650c254290a6fe7a48f0b462b9ef2e2f790b5be | [log] [tgz] |
---|---|---|
author | Rohit Waghchaure <rohitw1991@gmail.com> | Tue Jan 14 12:12:54 2020 +0530 |
committer | Rohit Waghchaure <rohitw1991@gmail.com> | Tue Jan 14 12:12:54 2020 +0530 |
tree | 59e1dd865727fc40dec04a471ba366e1d1acbbfd | |
parent | 7420fccbee0df14d7392b466ff9ec2b1b463dd77 [diff] |
fix: filter issue for the stock and account value comparision report
diff --git a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py index eef121e..94ec314 100644 --- a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py +++ b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py
@@ -43,7 +43,7 @@ def get_stock_ledger_data(report_filters, filters): if report_filters.account: warehouses = get_warehouses_based_on_account(report_filters.account, - report_filters.warehouse) + report_filters.company) filters["warehouse"] = ("in", warehouses)