Bugzilla – Attachment 178976 Details for
Bug 39239
Add an optional default manageddate filter to speed up loading suggestions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39239: Speed up loading suggestions with manageddate filter
Bug-39239-Speed-up-loading-suggestions-with-manage.patch (text/plain), 1.83 KB, created by
Marcel de Rooy
on 2025-03-05 15:21:34 UTC
(
hide
)
Description:
Bug 39239: Speed up loading suggestions with manageddate filter
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2025-03-05 15:21:34 UTC
Size:
1.83 KB
patch
obsolete
>From 610e507e7ffc1d37e005b623c5363cf7a58c7343 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Wed, 5 Mar 2025 13:54:36 +0100 >Subject: [PATCH] Bug 39239: Speed up loading suggestions with manageddate > filter >Content-Type: text/plain; charset=utf-8 > >--- > .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 3 +++ > suggestion/suggestion.pl | 4 ++++ > 2 files changed, 7 insertions(+) > >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 c50da2d860..430428e4e5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >@@ -1546,6 +1546,9 @@ > return true; > }); > }); >+ [% IF manageddate_from %] >+ $("fieldset.suggestion_information").toggle(); >+ [% END %] > </script> > [% END %] > [% IF op == 'save' %] >diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl >index 362cac0a0e..2306b57a25 100755 >--- a/suggestion/suggestion.pl >+++ b/suggestion/suggestion.pl >@@ -451,6 +451,10 @@ if ( $op eq '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 ) { >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39239
: 178976