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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-2 / +2 lines)
Lines 149-155 Link Here
149
149
150
    <fieldset class="rows" id="optionalfilters">
150
    <fieldset class="rows" id="optionalfilters">
151
            <legend>Optional filters for inventory list or comparing barcodes</legend>
151
            <legend>Optional filters for inventory list or comparing barcodes</legend>
152
            <span class="hint">Scanned items are expected to match one of the selected <em>not for loan</em> critera if any are checked.</span>
152
            <span class="hint">Scanned items are expected to match one of the selected <em>not for loan</em> criteria if any are checked.</span>
153
            <br/>
153
            <br/>
154
            <div id="statuses" style="display: block;">
154
            <div id="statuses" style="display: block;">
155
                  [% FOREACH status IN statuses %]
155
                  [% FOREACH status IN statuses %]
Lines 313-319 Link Here
313
                    <span>Found in wrong place</span><br/>
313
                    <span>Found in wrong place</span><br/>
314
                [% ELSIF problem.key == 'changestatus' %]
314
                [% ELSIF problem.key == 'changestatus' %]
315
                    [% IF result.notforloan %]
315
                    [% IF result.notforloan %]
316
                        <span>Item has unselected <em>Not for loan</em> status <em>[% result.notforloan %]</em></span><br/>
316
                        <span>Item has unselected <em>Not for loan</em> status <em>[% result.notforloan | html %]</em></span><br/>
317
                    [% ELSE %]
317
                    [% ELSE %]
318
                        <span>Items has no <em>not for loan</em> status</span><br/>
318
                        <span>Items has no <em>not for loan</em> status</span><br/>
319
                    [% END %]
319
                    [% END %]
(-)a/tools/inventory.pl (-2 / +1 lines)
Lines 411-417 if (defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on'){ Link Here
411
            if( $key eq 'wrongplace' ) {
411
            if( $key eq 'wrongplace' ) {
412
                $errstr .= "wrong place,";
412
                $errstr .= "wrong place,";
413
            } elsif( $key eq 'changestatus' ) {
413
            } elsif( $key eq 'changestatus' ) {
414
                $errstr .= "unknown notforloan status,";
414
                $errstr .= "unselected notforloan status $item->{notforloan},";
415
            } elsif( $key eq 'not_scanned' ) {
415
            } elsif( $key eq 'not_scanned' ) {
416
                $errstr .= "missing,";
416
                $errstr .= "missing,";
417
            } elsif( $key eq 'no_barcode' ) {
417
            } elsif( $key eq 'no_barcode' ) {
418
- 

Return to bug 34820