Bugzilla – Attachment 75471 Details for
Bug 20703
Add ability to void any credit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20703: Add confirmation modal when making a credit void
Bug-20703-Add-confirmation-modal-when-making-a-cre.patch (text/plain), 2.00 KB, created by
Tomás Cohen Arazi (tcohen)
on 2018-05-22 14:48:19 UTC
(
hide
)
Description:
Bug 20703: Add confirmation modal when making a credit void
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2018-05-22 14:48:19 UTC
Size:
2.00 KB
patch
obsolete
>From f1df85ed8acfa08abdafefe14d4048586495d4ec Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 22 May 2018 11:46:10 -0300 >Subject: [PATCH] Bug 20703: Add confirmation modal when making a credit void > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > .../prog/en/modules/members/boraccount.tt | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > >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 7ecaeb718d..a7f508d7ae 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -77,7 +77,7 @@ > <a href="boraccount.pl?action=reverse&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs"><i class="fa fa-undo"></i> Reverse</a> > [% END %] > [% IF account.amount < 0 %] >- <a href="boraccount.pl?action=void&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs"><i class="fa fa-ban"></i> Void</a> >+ <a href="boraccount.pl?action=void&accountlines_id=[% account.accountlines_id %]&borrowernumber=[% account.borrowernumber %]" class="btn btn-default btn-xs void"><i class="fa fa-ban"></i> Void</a> > [% END %] > [% ELSE %] > >@@ -141,6 +141,14 @@ > table_account_fines.fnFilter(filteredValue, 4, true, false); > $(this).toggleClass('filtered'); > }); >+ >+ $(".void").on("click",function(e){ >+ if( confirm( _("Are you sure you want to void this credit?") ) ) { >+ return true; >+ } else { >+ e.preventDefault(); >+ } >+ }); > }); > </script> > [% END %] >-- >2.17.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 20703
:
75013
|
75154
|
75468
|
75471
|
75472