Lines 1-34
Link Here
|
1 |
[%- BLOCK account_type_description -%] |
1 |
[%- BLOCK account_type_description -%] |
2 |
<span> |
2 |
<span> |
3 |
[%- IF account.credit_type_code -%] |
3 |
[%- IF account.credit_type_code -%] |
4 |
[%- SWITCH account.credit_type_code -%] |
4 |
[%- PROCESS credit_type_description credit_type = account.credit_type -%] |
5 |
[%- CASE 'PAYMENT' -%]Payment |
|
|
6 |
[%- CASE 'WRITEOFF' -%]Writeoff |
7 |
[%- CASE 'FORGIVEN' -%]Forgiven |
8 |
[%- CASE 'CREDIT' -%]Credit |
9 |
[%- CASE 'LOST_FOUND' -%]Lost item fee refund |
10 |
[%- CASE 'OVERPAYMENT' -%]Overpayment refund |
11 |
[%- CASE 'REFUND' -%]Refund |
12 |
[%- CASE -%][% account.credit_type.description | html %] |
13 |
[%- END -%] |
14 |
[%- ELSIF account.debit_type_code -%] |
5 |
[%- ELSIF account.debit_type_code -%] |
15 |
[%- SWITCH account.debit_type_code -%] |
6 |
[%- PROCESS debit_type_description debit_type = account.debit_type -%] |
16 |
[%- CASE 'ACCOUNT' -%]Account creation fee |
|
|
17 |
[%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee |
18 |
[%- CASE 'LOST' -%]Lost item |
19 |
[%- CASE 'MANUAL' -%]Manual fee |
20 |
[%- CASE 'NEW_CARD' -%]New card |
21 |
[%- CASE 'OVERDUE' -%]Fine |
22 |
[%- CASE 'PROCESSING' -%]Lost item processing fee |
23 |
[%- CASE 'RENT' -%]Rental fee |
24 |
[%- CASE 'RENT_DAILY' -%]Daily rental fee |
25 |
[%- CASE 'RENT_RENEW' -%]Renewal of rental item |
26 |
[%- CASE 'RENT_DAILY_RENEW' -%]Renewal of daily rental item |
27 |
[%- CASE 'RESERVE' -%]Hold fee |
28 |
[%- CASE 'RESERVE_EXPIRED' -%]Hold waiting too long |
29 |
[%- CASE 'Payout' -%]Payout |
30 |
[%- CASE -%][% account.debit_type.description | html %] |
31 |
[%- END -%] |
32 |
[%- END -%] |
7 |
[%- END -%] |
33 |
[%- PROCESS account_status_description account=account -%] |
8 |
[%- PROCESS account_status_description account=account -%] |
34 |
</span> |
9 |
</span> |
Lines 59-61
Link Here
|
59 |
[%- CASE -%] |
34 |
[%- CASE -%] |
60 |
[%- END -%] |
35 |
[%- END -%] |
61 |
[%- END -%] |
36 |
[%- END -%] |
|
|
37 |
|
38 |
[%- BLOCK debit_type_description -%] |
39 |
[%- SWITCH debit_type.code -%] |
40 |
[%- CASE 'ACCOUNT' -%]Account creation fee |
41 |
[%- CASE 'ACCOUNT_RENEW' -%]Account renewal fee |
42 |
[%- CASE 'LOST' -%]Lost item |
43 |
[%- CASE 'MANUAL' -%]Manual fee |
44 |
[%- CASE 'NEW_CARD' -%]New card |
45 |
[%- CASE 'OVERDUE' -%]Fine |
46 |
[%- CASE 'PROCESSING' -%]Lost item processing fee |
47 |
[%- CASE 'RENT' -%]Rental fee |
48 |
[%- CASE 'RENT_DAILY' -%]Daily rental fee |
49 |
[%- CASE 'RENT_RENEW' -%]Renewal of rental item |
50 |
[%- CASE 'RENT_DAILY_RENEW' -%]Renewal of daily rental item |
51 |
[%- CASE 'RESERVE' -%]Hold fee |
52 |
[%- CASE 'RESERVE_EXPIRED' -%]Hold waiting too long |
53 |
[%- CASE 'Payout' -%]Payout |
54 |
[%- CASE -%][% debit_type.description | html %] |
55 |
[%- END -%] |
56 |
[%- END -%] |
57 |
|
58 |
[%- BLOCK credit_type_description -%] |
59 |
[%- SWITCH credit_type.code -%] |
60 |
[%- CASE 'PAYMENT' -%]Payment |
61 |
[%- CASE 'WRITEOFF' -%]Writeoff |
62 |
[%- CASE 'FORGIVEN' -%]Forgiven |
63 |
[%- CASE 'CREDIT' -%]Credit |
64 |
[%- CASE 'LOST_FOUND' -%]Lost item fee refund |
65 |
[%- CASE 'OVERPAYMENT' -%]Overpayment refund |
66 |
[%- CASE 'REFUND' -%]Refund |
67 |
[%- CASE -%][% credit_type.description | html %] |
68 |
[%- END -%] |
69 |
[%- END -%] |