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

(-)a/circ/renew.pl (-1 / +1 lines)
Lines 67-73 if ($barcode) { Link Here
67
            $patron = $checkout->patron;
67
            $patron = $checkout->patron;
68
68
69
            $balance = $patron->account->balance;
69
            $balance = $patron->account->balance;
70
            my $amountlimit = C4::Context->preference("noissuescharge");
70
            my $amountlimit = C4::Context->preference("OPACFineNoRenewals");
71
71
72
            if ( ( $patron->is_debarred || q{} ) lt dt_from_string()->ymd() ) {
72
            if ( ( $patron->is_debarred || q{} ) lt dt_from_string()->ymd() ) {
73
                my $can_renew;
73
                my $can_renew;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (+1 lines)
Lines 608-613 OPAC: Link Here
608
            - pref: OPACFineNoRenewals
608
            - pref: OPACFineNoRenewals
609
              class: currency
609
              class: currency
610
            - '[% local_currency %] in charges (leave blank to disable).'
610
            - '[% local_currency %] in charges (leave blank to disable).'
611
            - <br /><strong>NOTE:</strong> If set, confirmation dialog is shown when renewing for patron with charges from staff interface.'
611
        -
612
        -
612
            - pref: OPACFineNoRenewalsIncludeCredits
613
            - pref: OPACFineNoRenewalsIncludeCredits
613
              choices:
614
              choices:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 928-934 Link Here
928
928
929
        [% UNLESS ( patron.borrowernumber ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %]
929
        [% UNLESS ( patron.borrowernumber ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %]
930
930
931
        var amountlimit = "[% Koha.Preference('noissuescharge') | html %]";
931
        var amountlimit = "[% Koha.Preference('OPACFineNoRenewals') | html %]";
932
        var fines = "[% fines | html %]";
932
        var fines = "[% fines | html %]";
933
        var MSG_CONFRIM_RENEW = _("The patron has a debt of %s.\n Are you sure you want to renew checkout(s)?").format(fines);
933
        var MSG_CONFRIM_RENEW = _("The patron has a debt of %s.\n Are you sure you want to renew checkout(s)?").format(fines);
934
934
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +1 lines)
Lines 727-733 Link Here
727
        table_settings_relatives_issues_table = [% TablesSettings.GetTableSettings( 'members', 'moremember', 'relatives-issues-table', 'json' ) | $raw %]
727
        table_settings_relatives_issues_table = [% TablesSettings.GetTableSettings( 'members', 'moremember', 'relatives-issues-table', 'json' ) | $raw %]
728
        table_settings_holds_table = [% TablesSettings.GetTableSettings( 'members', 'moremember', 'holds-table', 'json' ) | $raw %]
728
        table_settings_holds_table = [% TablesSettings.GetTableSettings( 'members', 'moremember', 'holds-table', 'json' ) | $raw %]
729
729
730
        var amountlimit = "[% Koha.Preference('noissuescharge') | html %]";
730
        var amountlimit = "[% Koha.Preference('OPACFineNoRenewals') | html %]";
731
        var fines = "[% fines | html %]";
731
        var fines = "[% fines | html %]";
732
        var MSG_CONFRIM_RENEW = _("The patron has a debt of %s.\n Are you sure you want to renew checkout(s)?").format(fines);
732
        var MSG_CONFRIM_RENEW = _("The patron has a debt of %s.\n Are you sure you want to renew checkout(s)?").format(fines);
733
733
734
- 

Return to bug 23415