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_LINE.date %]">[% ACCOUNT_LINE.date | $KohaDates %]</span></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 185-191
Link Here
|
185 |
<script type="text/javascript"> |
185 |
<script type="text/javascript"> |
186 |
$( document ).ready(function() { |
186 |
$( document ).ready(function() { |
187 |
|
187 |
|
188 |
$("#finestable").dataTable($.extend(true, {}, dataTablesDefaults )); |
188 |
$("#finestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
|
|
189 |
"aoColumnDefs": [ |
190 |
{ "sType": "title-string", "aTargets" : [ "title-string" ] } |
191 |
] |
192 |
} )); |
189 |
|
193 |
|
190 |
$(".paypal").on("click", function() { |
194 |
$(".paypal").on("click", function() { |
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'); |
195 |
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'); |
192 |
- |
|
|