From 59c2fa6b893398e501f255db377020a5a25442ef Mon Sep 17 00:00:00 2001 From: Martin Renvoize 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 += "" + msg += "" + __("Must be renewed at the library") + ""; - - span_style = "display: none"; span_class = "renewals-allowed"; } else if ( oObj.can_renew_error == "restriction" ) { msg += "" @@ -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 += ""; if ( can_renew || can_force_renew ) { content += "" + oObj.renewals_count + ""; -- 2.20.1