diff --git a/CHANGES.rst b/CHANGES.rst index 28bf6718e3..858a5581f9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,6 +21,7 @@ Changelog **Fixed** +- #1421 Fix Search Query for Batches Listing - #1418 Subscriber adapters not supported in clients listing - #1419 Mixed permissions for transitions in client workflow - #1414 Occasional "OSError: [Errno 24] Too many open files" in frontpage diff --git a/bika/lims/browser/batch/analysisrequests.py b/bika/lims/browser/batch/analysisrequests.py index 8c44f87fbb..593a89ed6c 100644 --- a/bika/lims/browser/batch/analysisrequests.py +++ b/bika/lims/browser/batch/analysisrequests.py @@ -26,8 +26,7 @@ class AnalysisRequestsView(BaseView): def __init__(self, context, request): super(AnalysisRequestsView, self).__init__(context, request) - self.contentFilter = {'portal_type': 'AnalysisRequest', - 'getBatchUID': api.get_uid(self.context), - 'sort_on': 'created', - 'sort_order': 'reverse', - 'is_active': True} + self.contentFilter = {"portal_type": "AnalysisRequest", + "getBatchUID": api.get_uid(self.context), + "sort_on": "created", + "sort_order": "reverse"}