From 57b6dab1da2ad7979f17c10379c54f212fac9d7e Mon Sep 17 00:00:00 2001 From: Sagar Sharma Date: Thu, 7 Jul 2022 23:19:17 +0530 Subject: [PATCH] fix: status filter in Job Card Summary --- .../manufacturing/report/job_card_summary/job_card_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a86c7a47c3..5083b7369d 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 @@ def get_data(filters): "total_time_in_mins", ] - for field in ["work_order", "workstation", "operation", "company"]: + for field in ["work_order", "workstation", "operation", "status", "company"]: if filters.get(field): query_filters[field] = ("in", filters.get(field))