4 [% USE AuthorisedValues %]
8 [% INCLUDE 'doc-head-open.inc' %]
9 <title>Koha › Patrons › Make a payment for [% patron.firstname | html %] [% patron.surname | html %]</title>
10 [% INCLUDE 'doc-head-close.inc' %]
13 <body id="pat_pay" class="pat">
14 [% INCLUDE 'header.inc' %]
15 [% INCLUDE 'patron-search.inc' %]
17 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> › Make a payment for [% patron.firstname | html %] [% patron.surname | html %]</div>
19 <div id="doc3" class="yui-t2">
24 [% INCLUDE 'members-toolbar.inc' borrowernumber=patron.borrowernumber %]
26 <!-- The manual invoice and credit buttons -->
27 <div class="statictabs">
29 <li><a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | uri %]">Transactions</a></li>
30 <li class="active"><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Make a payment</a></li>
31 <li><a href="/cgi-bin/koha/members/maninvoice.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Create manual invoice</a></li>
32 <li><a href="/cgi-bin/koha/members/mancredit.pl?borrowernumber=[% patron.borrowernumber | uri %]" >Create manual credit</a></li>
34 <div class="tabs-container">
37 <form action="/cgi-bin/koha/members/pay.pl" method="post" id="pay-fines-form">
38 <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
39 <p><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span></p>
44 <th>Fines & charges</th>
49 <th>Amount outstanding</th>
54 <td class="total" colspan="6">Total due:</td>
55 [% IF outstanding_credits.total_outstanding < 0 %]
56 <td style="text-align: right;">[% total + outstanding_credits.total_outstanding | $Price %]</td>
58 <td style="text-align: right;">[% total | $Price %]</td>
63 [% FOREACH line IN accounts %]
66 [% IF ( line.amountoutstanding > 0 ) %]
67 <input class="cb" type="checkbox" checked="checked" name="incl_par_[% line.accountlines_id | html %]" />
71 [% IF ( line.amountoutstanding > 0 ) %]
72 <input type="submit" name="pay_indiv_[% line.accountlines_id | html %]" value="Pay" />
73 [% IF CAN_user_updatecharges_writeoff %]<input type="submit" name="wo_indiv_[% line.accountlines_id | html %]" value="Write off" />[% END %]
75 <input type="hidden" name="itemnumber[% line.accountlines_id | html %]" value="[% line.itemnumber | html %]" />
76 <input type="hidden" name="description[% line.accountlines_id | html %]" value="[% line.description | html %]" />
77 <input type="hidden" name="accounttype[% line.accountlines_id | html %]" value="[% line.accounttype | html %]" />
78 <input type="hidden" name="amount[% line.accountlines_id | html %]" value="[% line.amount | html %]" />
79 <input type="hidden" name="accountlines_id[% line.accountlines_id | html %]" value="[% line.accountlines_id | html %]" />
80 <input type="hidden" name="amountoutstanding[% line.accountlines_id | html %]" value="[% line.amountoutstanding | html %]" />
81 <input type="hidden" name="borrowernumber[% line.accountlines_id | html %]" value="[% line.borrowernumber | html %]" />
84 [% SWITCH line.accounttype %]
85 [% CASE 'Pay' %]Payment, thanks
86 [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
87 [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
88 [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
89 [% CASE 'N' %]New card
91 [% CASE 'A' %]Account management fee
93 [% CASE 'L' %]Lost item
94 [% CASE 'W' %]Writeoff
95 [% CASE 'FU' %]Accruing fine
96 [% CASE 'HE' %]Hold waiting too long
97 [% CASE 'Rent' %]Rental fee
98 [% CASE 'FOR' %]Forgiven
99 [% CASE 'LR' %]Lost item fee refund
100 [% CASE 'PF' %]Processing fee
101 [% CASE 'PAY' %]Payment
102 [% CASE 'WO' %]Writeoff
104 [% CASE 'CR' %]Credit
105 [% CASE %][% line.accounttype | html %]
107 [%- IF line.description %], [% line.description | html %][% END %]
108 [% IF line.title %]([% line.title | html %])[% END %]
110 <td><input type="text" name="payment_note_[% line.accountlines_id | html %]" /></td>
111 <td>[% line.accounttype | html %]</td>
112 <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
113 <td class="debit" style="text-align: right;">[% line.amountoutstanding | $Price %]</td>
116 [% IF outstanding_credits.total_outstanding < 0 %]
118 <td class="total" colspan="6">Outstanding credits could be applied <input type="submit" id="apply_credits" name="apply_credits" value="Apply credits" class="submit" /></td>
119 <td class="credit" style="text-align: right;">[% outstanding_credits.total_outstanding | $Price %]</td>
122 [% IF ( account_grp.total ) %]
125 <td class="total" colspan="8" style="text-align: right;">Sub total:</td>
126 <td style="text-align: right;">[% account_grp.total | $Price %]</td>
131 <fieldset class="action">
132 <input type="submit" id="paycollect" name="paycollect" value="Pay amount" class="submit" />
133 [% IF CAN_user_updatecharges_writeoff %]<input type="submit" name="woall" id="woall" value="Write off all" class="submit" />[% END %]
134 <input type="submit" id="payselected" name="payselected" value="Pay selected" class="submit" />
135 <input type="submit" id="writeoff-selected" name="writeoff_selected" value="Write off selected" class="submit" />
136 <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a>
140 <p>[% patron.firstname | html %] [% patron.surname | html %] has no outstanding fines.</p>
147 [% INCLUDE 'circ-menu.inc' %]
151 [% MACRO jsinclude BLOCK %]
152 [% INCLUDE 'str/members-menu.inc' %]
153 [% Asset.js("js/members-menu.js") | $raw %]
154 [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
155 <script type= "text/javascript">
156 function enableCheckboxActions(){
157 // Enable/disable controls if checkboxes are checked
158 var checkedBoxes = $("input.cb:checked");
159 if ($(checkedBoxes).size()) {
160 $("#payselected").prop("disabled",false);
162 $("#payselected").prop("disabled",true);
165 $(document).ready(function(){
166 $('#pay-fines-form').preventDoubleFormSubmit();
167 $("#woall").click(function(event){
168 var msg = _("Are you sure you want to write off %s in outstanding fines? This cannot be undone!").format( "[% total | $Price %]" );
169 var answer = confirm(msg);
171 event.preventDefault();
174 $('#CheckAll').click(function(){
175 $("#finest").checkCheckboxes();
176 enableCheckboxActions();
179 $('#CheckNone').click(function(){
180 $("#finest").unCheckCheckboxes();
181 enableCheckboxActions();
184 $(".cb").change(function(){
185 enableCheckboxActions();
187 enableCheckboxActions();
193 [% INCLUDE 'intranet-bottom.inc' %]