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

(-)a/Koha/Account.pm (+1 lines)
Lines 173-178 $credit_type can be any of: Link Here
173
  - 'OVERPAYMENT'
173
  - 'OVERPAYMENT'
174
  - 'PAYMENT'
174
  - 'PAYMENT'
175
  - 'WRITEOFF'
175
  - 'WRITEOFF'
176
  - 'PROCESSING_FOUND'
176
177
177
=cut
178
=cut
178
179
(-)a/api/v1/swagger/definitions/patron_account_credit.yaml (-1 / +1 lines)
Lines 3-9 type: object Link Here
3
properties:
3
properties:
4
  credit_type:
4
  credit_type:
5
    type: string
5
    type: string
6
    description: Type of credit ('CREDIT', 'FORGIVEN', 'LOST_FOUND', 'PAYMENT', 'WRITEOFF' )
6
    description: Type of credit ('CREDIT', 'FORGIVEN', 'LOST_FOUND', 'PAYMENT', 'WRITEOFF', 'PROCESSING_FOUND' )
7
  amount:
7
  amount:
8
    type: number
8
    type: number
9
    minimum: 0
9
    minimum: 0
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc (+1 lines)
Lines 38-43 Link Here
38
        [%- CASE 'OVERPAYMENT'  -%]<span>Overpayment refund</span>
38
        [%- CASE 'OVERPAYMENT'  -%]<span>Overpayment refund</span>
39
        [%- CASE 'REFUND'       -%]<span>Refund</span>
39
        [%- CASE 'REFUND'       -%]<span>Refund</span>
40
        [%- CASE 'CANCELLATION' -%]<span>Cancelled charge</span>
40
        [%- CASE 'CANCELLATION' -%]<span>Cancelled charge</span>
41
        [%- CASE 'PROCESSING_FOUND' -%]<span>Lost item processing fee refund</span>
41
        [%- CASE                -%]<span>[% credit_type.description | html %]</span>
42
        [%- CASE                -%]<span>[% credit_type.description | html %]</span>
42
    [%- END -%]
43
    [%- END -%]
43
[%- END -%]
44
[%- END -%]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc (-1 / +1 lines)
Lines 40-45 Link Here
40
        [%- CASE 'OVERPAYMENT'  -%]<span>Overpayment refund</span>
40
        [%- CASE 'OVERPAYMENT'  -%]<span>Overpayment refund</span>
41
        [%- CASE 'REFUND'       -%]<span>Refund</span>
41
        [%- CASE 'REFUND'       -%]<span>Refund</span>
42
        [%- CASE 'CANCELLATION' -%]<span>Cancelled charge</span>
42
        [%- CASE 'CANCELLATION' -%]<span>Cancelled charge</span>
43
        [%- CASE 'PROCESSING_FOUND' -%]<span>Lost item processing fee refund</span>
43
        [%- CASE                -%]<span>[% credit_type.description | html %]</span>
44
        [%- CASE                -%]<span>[% credit_type.description | html %]</span>
44
    [%- END -%]
45
    [%- END -%]
45
[%- END -%]
46
[%- END -%]
46
- 

Return to bug 23012