Bug 39239 - Add an optional default manageddate filter to speed up loading suggestions
Summary: Add an optional default manageddate filter to speed up loading suggestions
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Staff interface (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-03-04 15:47 UTC by Marcel de Rooy
Modified: 2025-03-05 15:23 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 39239: Speed up loading suggestions with manageddate filter (1.83 KB, patch)
2025-03-05 15:21 UTC, Marcel de Rooy
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Marcel de Rooy 2025-03-04 15:47:48 UTC
Although you can archive suggestions and make the performance a bit better, it still takes quite long to load the suggestions page.
I am proposing here to add a pref that controls the initial manageddate_from filter to further control the number of loaded suggestions.
After loading the user can always change the filter.
Comment 1 Marcel de Rooy 2025-03-04 15:48:44 UTC
Already tested this tiny change with a local use pref:

diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl
index 2090a8a..f221bc7 100755
--- a/suggestion/suggestion.pl
+++ b/suggestion/suggestion.pl
@@ -409,6 +409,10 @@ if ($op=~/else/) {
             my $from_dt = $from && eval { dt_from_string($from) };
             my $to_dt   = $to && eval { dt_from_string($to) };

+            if ( ( my $from_pref = C4::Context->preference('SuggestionsDefaultManagedFrom') ) && $field eq 'manageddate' ) {
+                $from_dt  ||= dt_from_string()->subtract( days => $from_pref );
+                $template->param( "${field}_from" => $from_dt );
+            }
             if ( $from_dt || $to_dt ) {
                 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
                 if ( $from_dt && $to_dt ) {
Comment 2 Marcel de Rooy 2025-03-04 15:49:57 UTC
The above SuggestionsDefaultManagedFrom is the age in days that you want to limit suggestions by, looking at manageddate.
Comment 3 Marcel de Rooy 2025-03-05 12:51:05 UTC
And with this tiny change, the Suggestions filter opens up to indicate that we added a default filter:

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt
index ffa2363..098aa56 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt
@@ -1450,6 +1450,9 @@
                     return true;
                 });
             });
+            [% IF manageddate_from %]
+                $("fieldset.suggestion_information").toggle();
+            [% END %]
         </script>
     [% END %]
     [% IF op == 'save'  %]
Comment 4 Marcel de Rooy 2025-03-05 12:53:31 UTC
So yes, this is kind of a 'low budget' workaround to not refactor the whole thing rightaway (which is much more work). Although we are fetching say 100-200 records, it still takes too much time. If you have over 1000, you probably time out.
Comment 5 Marcel de Rooy 2025-03-05 15:21:34 UTC
Created attachment 178976 [details] [review]
Bug 39239: Speed up loading suggestions with manageddate filter
Comment 6 Marcel de Rooy 2025-03-05 15:23:07 UTC
Current patch just illustrates this workaround. We actually need larger refactoring.