From 13869609afa273918ee039901b6c32bc6a598e4c Mon Sep 17 00:00:00 2001 From: helene hickey Date: Tue, 15 Jan 2019 03:47:58 +0000 Subject: [PATCH] Bug 22054: Updated the error message for attempting to renew an onsite checkout To test: 1) Enable OnSiteCheckouts system preference 2) Checkout an item checking the onsite checkout checkbos in more options 3) Go to circulation > pending on-site checkouts 4) Verify the checkout shows 5) Go to circulation > renew 6) Try to renew the on-site checkout using the barcode 7) Verify display: onsite_checkout Continue without renewing 8) apply the patch and reload page with error message 9) verify display: Item cannot be renewed because it's an onsite checkout --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt index 78c0c698fe..c0542dbd0f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/renew.tt @@ -129,6 +129,9 @@

Item is not allowed renewal.

+ [% ELSIF error == "onsite_checkout" %] +

Item cannot be renewed because it's an onsite checkout

+ [% ELSE %] [% error | html %] -- 2.11.0