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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-9 / +8 lines)
Lines 82-107 $(document).ready(function() { Link Here
82
  [% FOREACH account IN accounts %]
82
  [% FOREACH account IN accounts %]
83
83
84
   <tr>
84
   <tr>
85
   <td><span title="[% account.date %]">[% account.date |$KohaDates %]</span></td>
85
   <td><span title="[% account.timestamp %]">[% account.timestamp | $KohaDates with_hours => 1 %]</span></td>
86
      <td>
86
      <td>
87
        [% SWITCH account.accounttype %]
87
        [% SWITCH account.accounttype %]
88
          [% CASE 'Pay' %]Payment on [% account.timestamp | $KohaDates with_hours => 1 %], thanks
88
          [% CASE 'Pay' %]Payment, thanks
89
          [% CASE 'Pay00' %]Payment on [% account.timestamp | $KohaDates with_hours => 1 %], thanks (cash via SIP2)
89
          [% CASE 'Pay00' %]Payment, thanks (cash via SIP2)
90
          [% CASE 'Pay01' %]Payment on [% account.timestamp | $KohaDates with_hours => 1 %], thanks (VISA via SIP2)
90
          [% CASE 'Pay01' %]Payment, thanks (VISA via SIP2)
91
          [% CASE 'Pay02' %]Payment on [% account.timestamp | $KohaDates with_hours => 1 %], thanks (credit card via SIP2)
91
          [% CASE 'Pay02' %]Payment, thanks (credit card via SIP2)
92
          [% CASE 'N' %]New card
92
          [% CASE 'N' %]New card
93
          [% CASE 'F' %]Fine
93
          [% CASE 'F' %]Fine
94
          [% CASE 'A' %]Account management fee
94
          [% CASE 'A' %]Account management fee
95
          [% CASE 'M' %]Sundry
95
          [% CASE 'M' %]Sundry
96
          [% CASE 'L' %]Lost item
96
          [% CASE 'L' %]Lost item
97
          [% CASE 'W' %]Written off on [% account.timestamp | $KohaDates with_hours => 1 %]
97
          [% CASE 'W' %]Written off
98
          [% CASE 'FU' %]Accruing fine
98
          [% CASE 'FU' %]Accruing fine
99
          [% CASE 'HE' %]Hold waiting too long
99
          [% CASE 'HE' %]Hold waiting too long
100
          [% CASE 'Rent' %]Rental fee
100
          [% CASE 'Rent' %]Rental fee
101
          [% CASE 'FOR' %]Forgiven
101
          [% CASE 'FOR' %]Forgiven
102
          [% CASE 'LR' %]Lost item fee refund
102
          [% CASE 'LR' %]Lost item fee refund
103
          [% CASE 'PAY' %]Payment on [% account.timestamp | $KohaDates with_hours => 1 %]
103
          [% CASE 'PAY' %]Payment
104
          [% CASE 'WO' %]Written off on [% account.timestamp | $KohaDates with_hours => 1 %]
104
          [% CASE 'WO' %]Written off
105
          [% CASE 'C' %]Credit
105
          [% CASE 'C' %]Credit
106
          [% CASE 'CR' %]Credit
106
          [% CASE 'CR' %]Credit
107
          [% CASE %][% account.accounttype %]
107
          [% CASE %][% account.accounttype %]
108
- 

Return to bug 16486