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

(-)a/Koha/Account/DebitType.pm (-1 / +1 lines)
Lines 68-74 sub _library_limits { Link Here
68
=cut
68
=cut
69
69
70
sub _type {
70
sub _type {
71
    return 'AccountDebitTypesBranch';
71
    return 'AccountDebitType';
72
}
72
}
73
73
74
1;
74
1;
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/accounts.inc (-2 / +2 lines)
Lines 11-18 Link Here
11
            [%- CASE 'LOST_RETURN'      -%]Lost item fee refund
11
            [%- CASE 'LOST_RETURN'      -%]Lost item fee refund
12
            [%- CASE                    -%][% account.accounttype | html %]
12
            [%- CASE                    -%][% account.accounttype | html %]
13
        [%- END -%]
13
        [%- END -%]
14
    [%- ELSIF account.debit_type -%]
14
    [%- ELSIF account.debit_type_code -%]
15
       [%- SWITCH account.debit_type -%]
15
       [%- SWITCH account.debit_type_code -%]
16
           [%- CASE 'ACCOUNT'          -%]Account creation fee
16
           [%- CASE 'ACCOUNT'          -%]Account creation fee
17
           [%- CASE 'ACCOUNT_RENEW'    -%]Account renewal fee
17
           [%- CASE 'ACCOUNT_RENEW'    -%]Account renewal fee
18
           [%- CASE 'LOST'             -%]Lost item
18
           [%- CASE 'LOST'             -%]Lost item
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc (-3 / +2 lines)
Lines 182-189 Link Here
182
            [%- CASE 'LOST_RETURN'      -%]Lost item fee refund
182
            [%- CASE 'LOST_RETURN'      -%]Lost item fee refund
183
            [%- CASE                    -%][% account.accounttype | html %]
183
            [%- CASE                    -%][% account.accounttype | html %]
184
        [%- END -%]
184
        [%- END -%]
185
    [%- ELSIF account.debit_type -%]
185
    [%- ELSIF account.debit_type_code -%]
186
       [%- SWITCH account.debit_type -%]
186
       [%- SWITCH account.debit_type_code -%]
187
           [%- CASE 'ACCOUNT'          -%]Account creation fee
187
           [%- CASE 'ACCOUNT'          -%]Account creation fee
188
           [%- CASE 'ACCOUNT_RENEW'    -%]Account renewal fee
188
           [%- CASE 'ACCOUNT_RENEW'    -%]Account renewal fee
189
           [%- CASE 'LOST'             -%]Lost item
189
           [%- CASE 'LOST'             -%]Lost item
190
- 

Return to bug 23049