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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc (-1 / +1 lines)
Lines 7-13 Link Here
7
            [%- CASE 'FORGIVEN'         -%]Forgiven
7
            [%- CASE 'FORGIVEN'         -%]Forgiven
8
            [%- CASE 'CREDIT'           -%]Credit
8
            [%- CASE 'CREDIT'           -%]Credit
9
            [%- CASE 'LOST_FOUND'       -%]Lost item fee refund
9
            [%- CASE 'LOST_FOUND'       -%]Lost item fee refund
10
            [%- CASE 'Refund'           -%]Refund
10
            [%- CASE 'REFUND'           -%]Refund
11
            [%- CASE                    -%][% account.credit_type.description | html %]
11
            [%- CASE                    -%][% account.credit_type.description | html %]
12
        [%- END -%]
12
        [%- END -%]
13
    [%- ELSIF account.debit_type_code -%]
13
    [%- ELSIF account.debit_type_code -%]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc (-2 / +7 lines)
Lines 176-181 Link Here
176
            [%- CASE 'FORGIVEN'         -%]Forgiven
176
            [%- CASE 'FORGIVEN'         -%]Forgiven
177
            [%- CASE 'CREDIT'           -%]Credit
177
            [%- CASE 'CREDIT'           -%]Credit
178
            [%- CASE 'LOST_FOUND'       -%]Lost item fee refund
178
            [%- CASE 'LOST_FOUND'       -%]Lost item fee refund
179
            [%- CASE 'REFUND'           -%]Refund
179
            [%- CASE                    -%][% account.credit_type.description | html %]
180
            [%- CASE                    -%][% account.credit_type.description | html %]
180
        [%- END -%]
181
        [%- END -%]
181
    [%- ELSIF account.debit_type_code -%]
182
    [%- ELSIF account.debit_type_code -%]
Lines 196-201 Link Here
196
           [%- CASE                    -%][% account.debit_type.description | html %]
197
           [%- CASE                    -%][% account.debit_type.description | html %]
197
       [%- END -%]
198
       [%- END -%]
198
    [%- END -%]
199
    [%- END -%]
200
    [%- PROCESS account_status_description account=account -%]
201
    </span>
202
[%- END # /BLOCK account_type_description -%]
203
204
[%- BLOCK account_status_description -%]
199
    [%- SWITCH account.status -%]
205
    [%- SWITCH account.status -%]
200
        [%- CASE 'UNRETURNED' -%]<span> (Accruing)</span>
206
        [%- CASE 'UNRETURNED' -%]<span> (Accruing)</span>
201
        [%- CASE 'RETURNED'   -%]<span> (Returned)</span>
207
        [%- CASE 'RETURNED'   -%]<span> (Returned)</span>
Lines 205-209 Link Here
205
        [%- CASE 'LOST'       -%]<span> (Lost)</span>
211
        [%- CASE 'LOST'       -%]<span> (Lost)</span>
206
        [%- CASE              -%]
212
        [%- CASE              -%]
207
    [%- END -%]
213
    [%- END -%]
208
    </span>
214
[%- END # /BLOCK account_status_description -%]
209
[%- END -%]
(-)a/pos/register.pl (-2 / +1 lines)
Lines 127-133 else { Link Here
127
127
128
                    my $refund = $accountline->reduce(
128
                    my $refund = $accountline->reduce(
129
                        {
129
                        {
130
                            reduction_type => 'Refund',
130
                            reduction_type => 'REFUND',
131
                            branch         => $library_id,
131
                            branch         => $library_id,
132
                            staff_id       => $logged_in_user->id,
132
                            staff_id       => $logged_in_user->id,
133
                            interface      => 'intranet',
133
                            interface      => 'intranet',
134
- 

Return to bug 26418