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

(-)a/installer/data/mysql/atomicupdate/bug_24603.perl (-1 / +1 lines)
Lines 5-11 if ( CheckVersion($DBversion) ) { Link Here
5
        qq{
5
        qq{
6
            INSERT IGNORE INTO account_credit_types (code, description, can_be_added_manually, is_system)
6
            INSERT IGNORE INTO account_credit_types (code, description, can_be_added_manually, is_system)
7
            VALUES
7
            VALUES
8
              ('CANCELLATION', 'A cancellation applied to a patron charge', 0, 1)
8
              ('CANCELLATION', 'Cancelled charge', 0, 1)
9
        }
9
        }
10
    );
10
    );
11
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc (-1 / +2 lines)
Lines 18-23 Link Here
18
        [%- CASE 'Lost Item'      -%]<span>Lost item returned</span>
18
        [%- CASE 'Lost Item'      -%]<span>Lost item returned</span>
19
        [%- CASE 'Writeoff'       -%]<span>Writeoff</span>
19
        [%- CASE 'Writeoff'       -%]<span>Writeoff</span>
20
        [%- CASE 'Void Payment'   -%]<span>Void payment</span>
20
        [%- CASE 'Void Payment'   -%]<span>Void payment</span>
21
        [%- CASE 'CANCELLATION'   -%]<span>Cancelled charge</span>
21
        [%- CASE                  -%][% account_offset.type | html %]
22
        [%- CASE                  -%][% account_offset.type | html %]
22
    [%- END -%]
23
    [%- END -%]
23
[%- END -%]
24
[%- END -%]
Lines 65-70 Link Here
65
        [%- CASE 'LOST_FOUND'       -%]Lost item fee refund
66
        [%- CASE 'LOST_FOUND'       -%]Lost item fee refund
66
        [%- CASE 'OVERPAYMENT'      -%]Overpayment refund
67
        [%- CASE 'OVERPAYMENT'      -%]Overpayment refund
67
        [%- CASE 'REFUND'           -%]Refund
68
        [%- CASE 'REFUND'           -%]Refund
69
        [%- CASE 'CANCELLATION'     -%]Cancelled charge
68
        [%- CASE                    -%][% credit_type.description | html %]
70
        [%- CASE                    -%][% credit_type.description | html %]
69
    [%- END -%]
71
    [%- END -%]
70
[%- END -%]
72
[%- END -%]
71
- 

Return to bug 24603