Bugzilla – Attachment 134898 Details for
Bug 29051
Seen renewal methods incorrectly blocked
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29051: Enable seen renewal in the staff client
Bug-29051-Enable-seen-renewal-in-the-staff-client.patch (text/plain), 2.28 KB, created by
Martin Renvoize (ashimema)
on 2022-05-11 15:22:52 UTC
(
hide
)
Description:
Bug 29051: Enable seen renewal in the staff client
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-05-11 15:22:52 UTC
Size:
2.28 KB
patch
obsolete
>From 59c2fa6b893398e501f255db377020a5a25442ef Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 11 May 2022 16:13:23 +0100 >Subject: [PATCH] Bug 29051: Enable seen renewal in the staff client > >This patch updates the javascript for the checkouts table to add the >checkbox back in for the case where too_unseen is the error returned by >CanBookBeRenewed, allowing such issues to be renewed. >--- > koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >index b649ada637..5677da8ab2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >@@ -487,11 +487,9 @@ $(document).ready(function() { > span_style = "display: none"; > span_class = "renewals-allowed"; > } else if ( oObj.can_renew_error == "too_unseen" ) { >- msg += "<span class='renewals-disabled'>" >+ msg += "<span>" > + __("Must be renewed at the library") > + "</span>"; >- >- span_style = "display: none"; > span_class = "renewals-allowed"; > } else if ( oObj.can_renew_error == "restriction" ) { > msg += "<span class='renewals-disabled'>" >@@ -570,7 +568,7 @@ $(document).ready(function() { > var can_force_renew = ( oObj.onsite_checkout == 0 ) && > ( oObj.can_renew_error != "on_reserve" || (oObj.can_renew_error == "on_reserve" && AllowRenewalOnHoldOverride)) > ? true : false; >- var can_renew = ( oObj.renewals_remaining > 0 && !oObj.can_renew_error ); >+ var can_renew = ( oObj.renewals_remaining > 0 && ( !oObj.can_renew_error || oObj.can_renew_error == "too_unseen" )); > content += "<span>"; > if ( can_renew || can_force_renew ) { > content += "<span style='padding: 0 1em;'>" + oObj.renewals_count + "</span>"; >-- >2.20.1
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 29051
:
134898
|
134899
|
136780
|
136782
|
137271
|
137272