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

(-)a/circ/returns.pl (-1 / +1 lines)
Lines 425-431 foreach my $code ( keys %$messages ) { Link Here
425
        ;    # FIXME... anything to do here?
425
        ;    # FIXME... anything to do here?
426
    }
426
    }
427
    elsif ( $code eq 'WasReturned' ) {
427
    elsif ( $code eq 'WasReturned' ) {
428
        ;    # FIXME... anything to do here?
428
        $err{returned} = 1;
429
    }
429
    }
430
    elsif ( $code eq 'WasTransfered' ) {
430
    elsif ( $code eq 'WasTransfered' ) {
431
        ;    # FIXME... anything to do here?
431
        ;    # FIXME... anything to do here?
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-1 / +3 lines)
Lines 318-323 $(document).ready(function () { Link Here
318
[% IF ( errmsgloop ) %]
318
[% IF ( errmsgloop ) %]
319
    <div class="dialog alert">
319
    <div class="dialog alert">
320
        [% FOREACH errmsgloo IN errmsgloop %]
320
        [% FOREACH errmsgloo IN errmsgloop %]
321
                    [% IF ( errmsgloo.returned ) %]
322
                       <p class="problem"><h5>The item was returned</h5></p>
323
                    [% END %]
321
                    [% IF ( errmsgloo.badbarcode ) %]
324
                    [% IF ( errmsgloo.badbarcode ) %]
322
                        <p class="problem">No item with barcode: [% errmsgloo.msg %]</p>
325
                        <p class="problem">No item with barcode: [% errmsgloo.msg %]</p>
323
                    [% END %]
326
                    [% END %]
324
- 

Return to bug 9388