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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-24 / +1 lines)
Lines 76-105 Link Here
76
    <input type="hidden" name="amountoutstanding[% line.accountlines_id | html %]" value="[% line.amountoutstanding | html %]" />
76
    <input type="hidden" name="amountoutstanding[% line.accountlines_id | html %]" value="[% line.amountoutstanding | html %]" />
77
    <input type="hidden" name="borrowernumber[% line.accountlines_id | html %]" value="[% line.borrowernumber | html %]" />
77
    <input type="hidden" name="borrowernumber[% line.accountlines_id | html %]" value="[% line.borrowernumber | html %]" />
78
    </td>
78
    </td>
79
    <td>
79
    <td>[% PROCESS 'accounttype.inc' account=line %]
80
        [% SWITCH line.accounttype %]
81
          [% CASE 'Pay' %]Payment, thanks
82
          [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
83
          [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
84
          [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
85
          [% CASE 'N' %]New card
86
          [% CASE 'F' %]Fine
87
          [% CASE 'A' %]Account management fee
88
          [% CASE 'M' %]Sundry
89
          [% CASE 'L' %]Lost item
90
          [% CASE 'W' %]Writeoff
91
          [% CASE 'FU' %]Accruing fine
92
          [% CASE 'HE' %]Hold waiting too long
93
          [% CASE 'Rent' %]Rental fee
94
          [% CASE 'FOR' %]Forgiven
95
          [% CASE 'LR' %]Lost item fee refund
96
          [% CASE 'PF' %]Processing fee
97
          [% CASE 'PAY' %]Payment
98
          [% CASE 'WO' %]Writeoff
99
          [% CASE 'C' %]Credit
100
          [% CASE 'CR' %]Credit
101
          [% CASE %][% line.accounttype | html %]
102
        [%- END -%]
103
        [%- IF line.description %], [% line.description | html %][% END %]
80
        [%- IF line.description %], [% line.description | html %][% END %]
104
        [% IF line.title %]([% line.title | html %])[% END %]
81
        [% IF line.title %]([% line.title | html %])[% END %]
105
    </td>
82
    </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printfeercpt.tt (-14 / +1 lines)
Lines 49-68 Link Here
49
  [% FOREACH account IN accounts %]
49
  [% FOREACH account IN accounts %]
50
<tr class="highlight">
50
<tr class="highlight">
51
      <td>[% account.date | $KohaDates %]</td>
51
      <td>[% account.date | $KohaDates %]</td>
52
      <td>
52
      <td>[% PROCESS 'accounttype.inc' %]
53
        [% SWITCH account.accounttype %]
54
          [% CASE 'Pay' %]Payment, thanks
55
          [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
56
          [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
57
          [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
58
          [% CASE 'N' %]New Card
59
          [% CASE 'F' %]Fine
60
          [% CASE 'A' %]Account management fee
61
          [% CASE 'M' %]Sundry
62
          [% CASE 'L' %]Lost Item
63
          [% CASE 'W' %]Writeoff
64
          [% CASE %][% account.accounttype | html %]
65
        [%- END -%]
66
        [%- IF account.description %], [% account.description | html %][% END %]
53
        [%- IF account.description %], [% account.description | html %][% END %]
67
      </td>
54
      </td>
68
      <td>[% account.note | html %]</td>
55
      <td>[% account.note | html %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt (-15 / +1 lines)
Lines 49-68 Link Here
49
  [% FOREACH account IN accounts %]
49
  [% FOREACH account IN accounts %]
50
<tr class="highlight">
50
<tr class="highlight">
51
      <td>[% account.date | $KohaDates%]</td>
51
      <td>[% account.date | $KohaDates%]</td>
52
       <td>
52
       <td>[% PROCESS 'accounttype.inc' %]
53
        [% SWITCH account.accounttype %]
54
          [% CASE 'Pay' %]Payment, thanks
55
          [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
56
          [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
57
          [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
58
          [% CASE 'N' %]New Card
59
          [% CASE 'F' %]Fine
60
          [% CASE 'A' %]Account management fee
61
          [% CASE 'M' %]Sundry
62
          [% CASE 'L' %]Lost Item
63
          [% CASE 'W' %]Writeoff
64
          [% CASE %][% account.accounttype | html %]
65
        [%- END -%]
66
        [%- IF account.description %], [% account.description | html %][% END %]
53
        [%- IF account.description %], [% account.description | html %][% END %]
67
      </td>
54
      </td>
68
      <td>[% account.note | html %]</td>
55
      <td>[% account.note | html %]</td>
69
- 

Return to bug 12186