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

(-)a/circ/returns.pl (+1 lines)
Lines 604-609 $template->param( Link Here
604
    dropboxdate    => output_pref($dropboxdate),
604
    dropboxdate    => output_pref($dropboxdate),
605
    overduecharges => $overduecharges,
605
    overduecharges => $overduecharges,
606
    soundon        => C4::Context->preference("SoundOn"),
606
    soundon        => C4::Context->preference("SoundOn"),
607
    BlockReturnOfWithdrawnItems => C4::Context->preference("BlockReturnOfWithdrawnItems"),
607
);
608
);
608
609
609
### Comment out rotating collections for now to allow it a little more time to bake
610
### Comment out rotating collections for now to allow it a little more time to bake
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-2 / +4 lines)
Lines 335-341 $(document).ready(function () { Link Here
335
                        <p class="problem">Item was lost, now found.</p>
335
                        <p class="problem">Item was lost, now found.</p>
336
                    [% END %]
336
                    [% END %]
337
                    [% IF ( errmsgloo.withdrawn ) %]
337
                    [% IF ( errmsgloo.withdrawn ) %]
338
                        <p class="problem">Item is withdrawn.</p>
338
                        [% IF BlockReturnOfWithdrawnItems %]
339
                           <h3>Cannot Check In</h3>
340
                        [% END %]
341
                        <p class="problem">Item is withdrawn. <strong>NOT CHECKED IN</strong></p>
339
                    [% END %]
342
                    [% END %]
340
                    [% IF ( errmsgloo.debarred ) %]
343
                    [% IF ( errmsgloo.debarred ) %]
341
                        <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %] </p>
344
                        <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %] </p>
342
- 

Return to bug 3387