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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (+4 lines)
Lines 333-338 function checkMultiHold() { Link Here
333
    <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a>'s <strong>account has expired</strong></li>
333
    <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a>'s <strong>account has expired</strong></li>
334
    [% END %]
334
    [% END %]
335
335
336
    [% IF restricted %]
337
    <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]#reldebarments">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>has restrictions</strong></li>
338
    [% END %]
339
336
    [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %]
340
    [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %]
337
    <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>owes [% amount_outstanding | format('%.2f') %]</strong></li>
341
    <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a> <strong>owes [% amount_outstanding | format('%.2f') %]</strong></li>
338
    [% END %]
342
    [% END %]
(-)a/reserve/request.pl (-1 / +2 lines)
Lines 44-49 use C4::Utils::DataTables::Members; Link Here
44
use C4::Members;
44
use C4::Members;
45
use C4::Search;		# enabled_staff_search_views
45
use C4::Search;		# enabled_staff_search_views
46
use Koha::DateUtils;
46
use Koha::DateUtils;
47
use Koha::Borrower::Debarments qw(IsDebarred);
47
48
48
my $dbh = C4::Context->dbh;
49
my $dbh = C4::Context->dbh;
49
my $sth;
50
my $sth;
Lines 176-181 if ($borrowernumber_hold && !$action) { Link Here
176
                diffbranch          => $diffbranch,
177
                diffbranch          => $diffbranch,
177
                messages            => $messages,
178
                messages            => $messages,
178
                warnings            => $warnings,
179
                warnings            => $warnings,
180
                restricted          => IsDebarred($borrowerinfo->{'borrowernumber'}),
179
                amount_outstanding  => GetMemberAccountRecords($borrowerinfo->{borrowernumber}),
181
                amount_outstanding  => GetMemberAccountRecords($borrowerinfo->{borrowernumber}),
180
    );
182
    );
181
}
183
}
182
- 

Return to bug 14883