Lines 71-77
Link Here
|
71 |
<thead> |
71 |
<thead> |
72 |
<tr> |
72 |
<tr> |
73 |
[% IF ENABLE_OPAC_PAYMENTS %]<th> </th>[% END %] |
73 |
[% IF ENABLE_OPAC_PAYMENTS %]<th> </th>[% END %] |
74 |
<th>Date</th> |
74 |
<th class="title-string">Date</th> |
75 |
<th>Description</th> |
75 |
<th>Description</th> |
76 |
<th>Fine amount</th> |
76 |
<th>Fine amount</th> |
77 |
<th>Amount outstanding</th> |
77 |
<th>Amount outstanding</th> |
Lines 102-108
Link Here
|
102 |
[% END %] |
102 |
[% END %] |
103 |
</td> |
103 |
</td> |
104 |
[% END %] |
104 |
[% END %] |
105 |
<td>[% ACCOUNT_LINE.date | $KohaDates %]</td> |
105 |
<td><span title="[% account.date %]">[% ACCOUNT_LINE.date | $KohaDates %]</td> |
106 |
<td> |
106 |
<td> |
107 |
[% SWITCH ACCOUNT_LINE.accounttype %] |
107 |
[% SWITCH ACCOUNT_LINE.accounttype %] |
108 |
[% CASE 'Pay' %]Payment, thanks |
108 |
[% CASE 'Pay' %]Payment, thanks |
Lines 181-187
Link Here
|
181 |
<script type="text/javascript"> |
181 |
<script type="text/javascript"> |
182 |
$( document ).ready(function() { |
182 |
$( document ).ready(function() { |
183 |
|
183 |
|
184 |
$("#finestable").dataTable($.extend(true, {}, dataTablesDefaults )); |
184 |
$("#finestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
|
|
185 |
"aoColumnDefs": [ |
186 |
{ "sType": "title-string", "aTargets" : [ "title-string" ] } |
187 |
] |
188 |
} )); |
185 |
|
189 |
|
186 |
$(".paypal").on("click", function() { |
190 |
$(".paypal").on("click", function() { |
187 |
window.open('https://www.paypal.com/webapps/mpp/paypal-popup','WIPaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=1060, height=700'); |
191 |
window.open('https://www.paypal.com/webapps/mpp/paypal-popup','WIPaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=1060, height=700'); |
188 |
- |
|
|