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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (+5 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
[% UNLESS ( multi_hold ) %]
4
[% UNLESS ( multi_hold ) %]
Lines 332-337 function checkMultiHold() { Link Here
332
    <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>
333
    [% END %]
334
    [% END %]
334
335
336
    [% 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>
338
    [% END %]
339
335
    [% IF ( diffbranch ) %]
340
    [% IF ( diffbranch ) %]
336
    <li> <strong>Pickup library is different</strong> than <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a>'s home library ([% borrower_branchname %] / [% borrower_branchcode %] )</li>
341
    <li> <strong>Pickup library is different</strong> than <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowerfirstname %] [% borrowersurname %]</a>'s home library ([% borrower_branchname %] / [% borrower_branchcode %] )</li>
337
    [% END %]
342
    [% END %]
(-)a/reserve/request.pl (-2 / +2 lines)
Lines 175-181 if ($borrowernumber_hold && !$action) { Link Here
175
                expiry              => $expiry,
175
                expiry              => $expiry,
176
                diffbranch          => $diffbranch,
176
                diffbranch          => $diffbranch,
177
                messages            => $messages,
177
                messages            => $messages,
178
                warnings            => $warnings
178
                warnings            => $warnings,
179
                amount_outstanding  => GetMemberAccountRecords($borrowerinfo->{borrowernumber}),
179
    );
180
    );
180
}
181
}
181
182
182
- 

Return to bug 14882