View | Details | Raw Unified | Return to bug 22674
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc (-4 / +4 lines)
Lines 1-9 Link Here
1
[%- BLOCK account_type_description -%]
1
[%- BLOCK account_type_description -%]
2
    [%- SWITCH account.accounttype -%]
2
    [%- SWITCH account.accounttype -%]
3
        [%- CASE 'Pay'   -%]<span>Payment, thanks</span>
3
        [%- CASE 'Pay'   -%]<span>Payment</span>
4
        [%- CASE 'Pay00' -%]<span>Payment, thanks (cash via SIP2)</span>
4
        [%- CASE 'Pay00' -%]<span>Payment (cash via SIP2)</span>
5
        [%- CASE 'Pay01' -%]<span>Payment, thanks (VISA via SIP2)</span>
5
        [%- CASE 'Pay01' -%]<span>Payment (VISA via SIP2)</span>
6
        [%- CASE 'Pay02' -%]<span>Payment, thanks (credit card via SIP2)</span>
6
        [%- CASE 'Pay02' -%]<span>Payment (credit card via SIP2)</span>
7
        [%- CASE 'VOID'  -%]<span>Voided</span>
7
        [%- CASE 'VOID'  -%]<span>Voided</span>
8
        [%- CASE 'N'     -%]<span>New card</span>
8
        [%- CASE 'N'     -%]<span>New card</span>
9
        [%- CASE 'F'     -%]<span>Fine</span>
9
        [%- CASE 'F'     -%]<span>Fine</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-4 / +4 lines)
Lines 81-90 Link Here
81
    </td>
81
    </td>
82
    <td>
82
    <td>
83
        [% SWITCH line.accounttype %]
83
        [% SWITCH line.accounttype %]
84
          [% CASE 'Pay' %]Payment, thanks
84
          [% CASE 'Pay' %]Payment
85
          [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
85
          [% CASE 'Pay00' %]Payment (cash via SIP2)
86
          [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
86
          [% CASE 'Pay01' %]Payment (VISA via SIP2)
87
          [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
87
          [% CASE 'Pay02' %]Payment (credit card via SIP2)
88
          [% CASE 'N' %]New card
88
          [% CASE 'N' %]New card
89
          [% CASE 'F' %]Fine
89
          [% CASE 'F' %]Fine
90
          [% CASE 'A' %]Account management fee
90
          [% CASE 'A' %]Account management fee
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc (-6 / +5 lines)
Lines 28-37 Link Here
28
                    <td><span title="[% ACCOUNT_LINE.date | html %]">[% ACCOUNT_LINE.date | $KohaDates %]</span></td>
28
                    <td><span title="[% ACCOUNT_LINE.date | html %]">[% ACCOUNT_LINE.date | $KohaDates %]</span></td>
29
                    <td>
29
                    <td>
30
                        [% SWITCH ACCOUNT_LINE.accounttype %]
30
                        [% SWITCH ACCOUNT_LINE.accounttype %]
31
                        [% CASE 'Pay' %]Payment, thanks
31
                        [% CASE 'Pay' %]Payment
32
                        [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
32
                        [% CASE 'Pay00' %]Payment (cash via SIP2)
33
                        [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
33
                        [% CASE 'Pay01' %]Payment (VISA via SIP2)
34
                        [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
34
                        [% CASE 'Pay02' %]Payment (credit card via SIP2)
35
                        [% CASE 'N' %]New card
35
                        [% CASE 'N' %]New card
36
                        [% CASE 'F' %]Fine
36
                        [% CASE 'F' %]Fine
37
                        [% CASE 'A' %]Account management fee
37
                        [% CASE 'A' %]Account management fee
Lines 109-112 Link Here
109
    </form>
109
    </form>
110
[% ELSE %]
110
[% ELSE %]
111
    <h4>You have no fines or charges</h4>
111
    <h4>You have no fines or charges</h4>
112
[% END %]
112
[% END %]
113
- 

Return to bug 22674