From 4321764dadbafaaa01cdd92d376dd64c8090e149 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Thu, 11 Aug 2022 07:38:03 -0400 Subject: [PATCH] Bug 27920: (QA follow-up) Update expiration date Checkbox should be enabled when overwriting existing patrons Signed-off-by: Katrin Fischer --- .../intranet-tmpl/prog/en/modules/tools/import_borrowers.tt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt index 3690784018..8ac4815c92 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt @@ -452,10 +452,12 @@ you can supply dates in ISO format (e.g., '2010-10-28'). $("#overwrite_cardnumberno").click(function(){ $("#overwrite_passwords").prop('checked',false).prop('disabled',true); $("#update_dateexpiry").prop('checked',false).prop('disabled',true); + $("#update_dateexpiry_from_today").prop('checked',false).prop('disabled',true); }); $("#overwrite_cardnumberyes").click(function(){ $("#overwrite_passwords").prop('disabled',false); $("#update_dateexpiry").prop('disabled',false); + $("#update_dateexpiry_from_today").prop('disabled',false); }); [% END %] -- 2.30.2