From 75a77a3c82c0f51d7ead49e6670aef7bd4029242 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Mon, 15 Jul 2024 16:20:15 +0000 Subject: [PATCH] Bug 37345: Only toggle_onsite_checkout() if OnSiteCheckoutAutoCheck is enabled To test: 1. Find an item to checkout and a patron to check out to. 2. Set a due manually: "Specify due date (MM/DD/YYYY):" 3. Before checking out click the "Remember for session:" checkbox. 4. Check the item out. 5. The specific due date is not retained. 6. APPLY PATCH 7. Try 1 -4 again, now the date should be sticking. 8. Turn on the OnSiteCheckouts system pref and make sure it still works 9. Turn on the OnSiteCheckoutAutoCheck system pref and make sure the on-site checkbox is still checked after doing an on-site checkout. Signed-off-by: David Nind Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer (cherry picked from commit 3276e0fa0c9931bab75c50b59c66c44f89c459b3) Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index ff812fe5c1..4a55634e93 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -1112,7 +1112,9 @@ [% END %] } }); - toggle_onsite_checkout(); + [% IF Koha.Preference('OnSiteCheckoutAutoCheck') && onsite_checkout == "on" %] + toggle_onsite_checkout(); + [% END %] $("#onsite_checkout").click(function(){ toggle_onsite_checkout(); }); -- 2.39.5