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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt (-4 / +3 lines)
Lines 123-129 Link Here
123
        [% SET ccodes = AuthorisedValues.GetAuthValueDropbox('CCODE') %]
123
        [% SET ccodes = AuthorisedValues.GetAuthValueDropbox('CCODE') %]
124
        [% IF ( ccodes.count > 0 ) %]
124
        [% IF ( ccodes.count > 0 ) %]
125
        <li>
125
        <li>
126
            <label for="ccode">Collection code: </label>
126
            <label for="ccodeloop">Collection code: </label>
127
            <select id="ccodeloop" name="ccode">
127
            <select id="ccodeloop" name="ccode">
128
                        <option value="">Filter collection</option>
128
                        <option value="">Filter collection</option>
129
                [% FOREACH cc IN ccodes %]
129
                [% FOREACH cc IN ccodes %]
Lines 143-149 Link Here
143
                <input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation | html %]" />
143
                <input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation | html %]" />
144
           <li>
144
           <li>
145
            <label for="class_source">Call number classification scheme</label>
145
            <label for="class_source">Call number classification scheme</label>
146
            <select name="class_source">
146
            <select name="class_source" id="class_source">
147
            [% FOREACH class_source IN class_sources %]
147
            [% FOREACH class_source IN class_sources %]
148
                [% IF class_source.cn_source == pref_class %]
148
                [% IF class_source.cn_source == pref_class %]
149
                <option value="[% class_source.cn_source | html %]" selected="selected">[% class_source.description | html %] (default)</option>
149
                <option value="[% class_source.cn_source | html %]" selected="selected">[% class_source.description | html %] (default)</option>
Lines 176-182 Link Here
176
                                            [% value.lib | html %]
176
                                            [% value.lib | html %]
177
                                        [% END %]
177
                                        [% END %]
178
                                    </label>
178
                                    </label>
179
                                    <input type="checkbox" name="status-[% status.fieldname | html %]-[% value.authorised_value | html %]" id="[% value.authorised_value | html %]" />
179
                                    <input type="checkbox" name="status-[% status.fieldname | html %]-[% value.authorised_value | html %]" id="[% value.id | html %]" />
180
                                    </li>
180
                                    </li>
181
                                  [% END %]
181
                                  [% END %]
182
                              [% END %]
182
                              [% END %]
183
- 

Return to bug 37977