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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-4 / +3 lines)
Lines 125-133 Link Here
125
                        <option value="">Filter collection</option>
125
                        <option value="">Filter collection</option>
126
                [% FOREACH cc IN ccodes %]
126
                [% FOREACH cc IN ccodes %]
127
                    [% IF (ccode == cc.authorised_value) %]
127
                    [% IF (ccode == cc.authorised_value) %]
128
                        <option value="[% cc.authorised_value %]" selected="selected">[% cc.lib %]</option>
128
                        <option value="[% cc.authorised_value | html %]" selected="selected">[% cc.lib | html %]</option>
129
                    [% ELSE %]
129
                    [% ELSE %]
130
                        <option value="[% cc.authorised_value %]">[% cc.lib %]</option>
130
                        <option value="[% cc.authorised_value | html %]">[% cc.lib | html %]</option>
131
                    [% END %]
131
                    [% END %]
132
                [% END %]
132
                [% END %]
133
            </select>
133
            </select>
Lines 246-252 Link Here
246
    <input type="hidden" name="location" value="[% location | html %]" />
246
    <input type="hidden" name="location" value="[% location | html %]" />
247
    <input type="hidden" name="branchcode" value="[% branchcode | html %]" />
247
    <input type="hidden" name="branchcode" value="[% branchcode | html %]" />
248
    <input type="hidden" name="datelastseen" value="[% datelastseen | html %]" />
248
    <input type="hidden" name="datelastseen" value="[% datelastseen | html %]" />
249
    <input type="hidden" name="ccode" value="[% ccode %]" />
249
    <input type="hidden" name="ccode" value="[% ccode | html %]" />
250
250
251
    [% UNLESS uploadedbarcodesflag %]
251
    [% UNLESS uploadedbarcodesflag %]
252
      <div><a href="#" class="checkall"><i class="fa fa-check"></i> Select all</a> <a href="#" class="clearall"><i class="fa fa-remove"></i> Clear all</a></div>
252
      <div><a href="#" class="checkall"><i class="fa fa-check"></i> Select all</a> <a href="#" class="clearall"><i class="fa fa-remove"></i> Clear all</a></div>
253
- 

Return to bug 14393