From 16a336f33f0760aa995f133a65470964ac0348fb Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 9 Jan 2023 14:09:29 +0000 Subject: [PATCH] Bug 32596: Filter jobs by enqueued on, not started on To test: 1 - Do a bunch of stuff in the staff interface the will generate background jobs 2 - Wait a bit to make sure all the jobs are done 3 - Visit Admin->Jobs 4 - Note there is nothing shown 5 - uncheck 'Current jobs only' and 'Only include jobs started in the last hour' 6 - Note that nothing is shown, but header says '(filtered from X jobs)' 7 - Apply patch 8 - Reload table 9 - Confirm you can see the finished jobs now Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Jonathan Druart --- .../intranet-tmpl/prog/en/modules/admin/background_jobs.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/background_jobs.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/background_jobs.tt index 2a18857b1bb..f65d8189f90 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/background_jobs.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/background_jobs.tt @@ -128,7 +128,7 @@
- +
@@ -251,7 +251,7 @@ [% END %] let additional_filters = { - started_on: function(){ + enqueued_on: function(){ let now = new Date(); if ( $("#include_last_hour").is(":checked") ) { now.setHours(now.getHours() - 1); -- 2.25.1