|
Lines 1-3
Link Here
|
|
|
1 |
[% PROCESS 'accounts.inc' %] |
| 1 |
<form method="post" action="opac-account-pay.pl" class="form-horizontal"> |
2 |
<form method="post" action="opac-account-pay.pl" class="form-horizontal"> |
| 2 |
[% IF ( ACCOUNT_LINES ) %] |
3 |
[% IF ( ACCOUNT_LINES ) %] |
| 3 |
<table class="table table-bordered table-striped" id="finestable"> |
4 |
<table class="table table-bordered table-striped" id="finestable"> |
|
Lines 169-221
Link Here
|
| 169 |
</fieldset> |
170 |
</fieldset> |
| 170 |
[% END # /IF ENABLE_OPAC_PAYMENTS && DISPLAY_PAYMENT_BLOCK %] |
171 |
[% END # /IF ENABLE_OPAC_PAYMENTS && DISPLAY_PAYMENT_BLOCK %] |
| 171 |
</form> |
172 |
</form> |
| 172 |
|
|
|
| 173 |
[%- BLOCK account_type_description -%] |
| 174 |
<span> |
| 175 |
[%- IF account.credit_type_code -%] |
| 176 |
[%- SWITCH account.credit_type_code -%] |
| 177 |
[%- CASE 'PAYMENT' -%]Payment |
| 178 |
[%- CASE 'WRITEOFF' -%]Writeoff |
| 179 |
[%- CASE 'FORGIVEN' -%]Forgiven |
| 180 |
[%- CASE 'CREDIT' -%]Credit |
| 181 |
[%- CASE 'LOST_FOUND' -%]Lost item fee refund |
| 182 |
[%- CASE 'REFUND' -%]Refund |
| 183 |
[%- CASE 'CANCELLATION' -%]Cancelled charge |
| 184 |
[%- CASE -%][% account.credit_type.description | html %] |
| 185 |
[%- END -%] |
| 186 |
[%- ELSIF account.debit_type_code -%] |
| 187 |
[%- SWITCH account.debit_type_code -%] |
| 188 |
[%- CASE 'ACCOUNT' -%]Account creation fee |
| 189 |
[%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee |
| 190 |
[%- CASE 'LOST' -%]Lost item |
| 191 |
[%- CASE 'MANUAL' -%]Manual fee |
| 192 |
[%- CASE 'NEW_CARD' -%]New card |
| 193 |
[%- CASE 'OVERDUE' -%]Fine |
| 194 |
[%- CASE 'PROCESSING' -%]Lost item processing fee |
| 195 |
[%- CASE 'RENT' -%]Rental fee |
| 196 |
[%- CASE 'RENT_DAILY' -%]Daily rental fee |
| 197 |
[%- CASE 'RENT_RENEW' -%]Renewal of rental item |
| 198 |
[%- CASE 'RENT_DAILY_RENEW' -%]Renewal of daily rental item |
| 199 |
[%- CASE 'RESERVE' -%]Hold fee |
| 200 |
[%- CASE 'RESERVE_EXPIRED' -%]Hold waiting too long |
| 201 |
[%- CASE 'Payout' -%]Payout |
| 202 |
[%- CASE -%][% account.debit_type.description | html %] |
| 203 |
[%- END -%] |
| 204 |
[%- END -%] |
| 205 |
[%- PROCESS account_status_description account=account -%] |
| 206 |
</span> |
| 207 |
[%- END # /BLOCK account_type_description -%] |
| 208 |
|
| 209 |
[%- BLOCK account_status_description -%] |
| 210 |
[%- SWITCH account.status -%] |
| 211 |
[%- CASE 'UNRETURNED' -%]<span> (Accruing)</span> |
| 212 |
[%- CASE 'RETURNED' -%]<span> (Returned)</span> |
| 213 |
[%- CASE 'REPLACED' -%]<span> (Replaced)</span> |
| 214 |
[%- CASE 'REFUNDED' -%]<span> (Refunded)</span> |
| 215 |
[%- CASE 'FORGIVEN' -%]<span> (Forgiven)</span> |
| 216 |
[%- CASE 'VOID' -%]<span> (Voided)</span> |
| 217 |
[%- CASE 'LOST' -%]<span> (Lost)</span> |
| 218 |
[%- CASE 'CANCELLED' -%]<span> (Cancelled)</span> |
| 219 |
[%- CASE -%] |
| 220 |
[%- END -%] |
| 221 |
[%- END -%] |