commit | ef7fd670fcbe3b5c0ea776bfd54f73e34d57509f | [log] [tgz] |
---|---|---|
author | s-aga-r <sagarsharma.s312@gmail.com> | Sun Nov 27 16:57:38 2022 +0530 |
committer | s-aga-r <sagarsharma.s312@gmail.com> | Sat Nov 26 16:57:38 2022 +0530 |
tree | 199fcc7bd29ab9e15d76ac2539c6b8f15062e2a7 | |
parent | 481149814e4170e970a9e74aaa41968cf47b7526 [diff] |
fix: `production_item` filter in `Job Card Summary Report`
diff --git a/erpnext/manufacturing/report/job_card_summary/job_card_summary.py b/erpnext/manufacturing/report/job_card_summary/job_card_summary.py index f867a75..8d72ef1 100644 --- a/erpnext/manufacturing/report/job_card_summary/job_card_summary.py +++ b/erpnext/manufacturing/report/job_card_summary/job_card_summary.py
@@ -36,7 +36,7 @@ "total_time_in_mins", ] - for field in ["work_order"]: + for field in ["work_order", "production_item"]: if filters.get(field): query_filters[field] = ("in", filters.get(field))