From a9cff8368dd69da7a39dfb3506fbf4ebd47110de Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 18 Aug 2021 09:45:59 +0100 Subject: [PATCH] Bug 28346: (QA follow-up) Add `-action` for consistency --- .../prog/en/modules/members/boraccount.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt index 6bda4d6563..4b0452b2db 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -105,16 +105,16 @@ [% IF account.amountoutstanding <= 0 %][% ELSE %][% END %][% account.amountoutstanding | $Price %] [% IF ( account.is_credit ) %] - Print + Print [% ELSE %] - Print + Print [% END %] Details [% IF account.is_debit && account.amountoutstanding > 0 %] Pay [% END %] [% IF account.is_credit && account.status != 'VOID' %] - Void payment + Void payment [% END %] [% IF account.is_debit && account.amount == account.amountoutstanding && account.status != 'CANCELLED' && !(account.debit_type_code == 'PAYOUT') %]
@@ -147,7 +147,7 @@ [% total | $Price %] [% IF CAN_user_updatecharges_payout %] - + [% END %] [% ELSE %] @@ -353,7 +353,7 @@ $(this).toggleClass('filtered'); }); - $(".void").on("click",function(e){ + $(".void-action").on("click",function(e){ if( confirm( _("Are you sure you want to void this credit?") ) ) { return true; } else { -- 2.20.1