a60e2811e613a8b75c3ce0839253631065dfe916
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / inventory.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE KohaDates %]
4 [% USE Branches %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Koha &rsaquo; Tools &rsaquo; Inventory</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 [% Asset.css("css/datatables.css") | $raw %]
10 </head>
11
12 <body id="tools_inventory" class="tools">
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'cat-search.inc' %]
15
16 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; [% IF (loop) %]<a href="/cgi-bin/koha/tools/inventory.pl">Inventory</a> &rsaquo; Results[% ELSE %]Inventory[% END %]</div>
17
18 <div class="main container-fluid">
19     <div class="row">
20         <div class="col-sm-10 col-sm-push-2">
21             <main>
22
23     <h1>Inventory</h1>
24     [% IF (moddatecount) %]<div class="dialog message">[% moddatecount | html %] items modified : datelastseen set to [% date | $KohaDates %]</div>
25     <div class="dialog alert">Number of potential barcodes read: [% LinesRead | html %]</div>[% END %]
26     [% IF (errorfile) %]<div class="dialog alert">[% errorfile | html %] can't be opened</div>[% END %]
27     [% IF (err_length && err_length==1) %]<div class="dialog alert">There was 1 barcode that was too long.</div>[% END %]
28     [% IF (err_length && err_length>1) %]<div class="dialog alert">There were [% err_length | html %] barcodes that were too long.</div>[% END %]
29     [% IF (err_data && err_data==1) %]<div class="dialog alert">There was 1 barcode that contained at least one unprintable character.</div>[% END %]
30     [% IF (err_data && err_data>1) %]<div class="dialog alert">There were [% err_data | html %] barcodes that contained at least one unprintable character.</div>[% END %]
31     [% FOREACH error IN errorloop %]
32         <div class="dialog alert">
33             [% error.barcode | html %]
34             [% IF (error.ERR_BARCODE) %]: barcode not found[% END %]
35             [% IF (error.ERR_WTHDRAWN) %]: item withdrawn[% END %]
36             [% IF (error.ERR_ONLOAN_RET) %]: item was on loan. It was returned before marked as seen[% END %]
37             [% IF (error.ERR_ONLOAN_NOT_RET) %]: item was on loan. couldn't be returned.[% END %]
38         </div>
39     [% END %]
40        [% UNLESS op %]
41
42     <form method="post" id="inventory_form" action="/cgi-bin/koha/tools/inventory.pl" enctype="multipart/form-data">
43         <fieldset class="rows">
44           <legend>Use a barcode file</legend>
45           <ol>
46             <li><label for="uploadbarcodes">Barcode file: </label> <input type="file" id="uploadbarcodes" name="uploadbarcodes" /></li>
47             <li><label for="setdate">Set inventory date to:</label> <input type="text" id="setdate" name="setdate" value="[% today | $KohaDates %]" class="datepicker" disabled /></li>
48             <li><label for="compareinv2barcd">Compare barcodes list to results: </label><input type="checkbox" name="compareinv2barcd" id="compareinv2barcd" disabled /></li>
49             <li><label for="dont_checkin">Do not check in items scanned during inventory: </label><input type="checkbox" name="dont_checkin" id="dont_checkin" disabled /></li>
50             <li><label for="out_of_order">Check barcodes list for items shelved out of order: </label><input type="checkbox" name="out_of_order" id="out_of_order" disabled /></li>
51           </ol>
52         </fieldset>
53
54         <fieldset class="rows">
55         <legend>Item location filters</legend>
56         <ol><li>
57         <label for="branch">Library: </label>
58             <input type="radio" name="branch" value="homebranch"> Home library</input>
59             <input type="radio" name="branch" value="holdingbranch"> Current library</input>
60         </li><li>
61         <label for="branchloop">Library: </label><select id="branchloop" name="branchcode" style="width:12em;">
62             <option value="">All libraries</option>
63             [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
64         </select>
65         </li>
66         [% IF (authorised_values) %]
67         <li>
68             <label for="locationloop">Shelving location (items.location) is: </label>
69         <select id="locationloop" name="location">
70                 <option value="">Filter location</option>
71         [% FOREACH value IN authorised_values %]
72             [% IF (value.selected) %]
73                 <option value="[% value.authorised_value | html %]" selected="selected">[% value.lib | html %]</option>
74             [% ELSE %]
75                 <option value="[% value.authorised_value | html %]">[% value.lib | html %]</option>
76             [% END %]
77         [% END %]
78         </select>        </li>
79         [% END %]
80         <li>
81             <label for="minlocation">Item callnumber between: </label>
82                 <input type="text" name="minlocation" id="minlocation" value="[% minlocation | html %]" /> (items.itemcallnumber)  </li>
83            <li><label for="maxlocation">...and: </label>
84                 <input type="text" name="maxlocation" id="maxlocation" value="[% maxlocation | html %]" />
85         </li>
86     </ol>
87     </fieldset>
88
89     <fieldset class="rows" id="optionalfilters">
90             <legend>Optional filters for inventory list or comparing barcodes</legend>
91             <br/>
92             <div id="statuses" style="display: block;">
93                   [% FOREACH status IN statuses %]
94                       [% IF (status.values) %]
95                           <fieldset style="float: left; padding: 5px; margin: 5px;text-align:right">
96                               <legend>[% status.fieldname | html %]</legend>
97                               <ul id="statuses-[% fieldname | html %]" style="display: inline;">
98                               [% FOREACH value IN status.values %]
99                                   [% IF (value.lib) %]
100                                     <li>
101                                     <label for="[% value.id | html %]">
102                                         [% IF ( status.fieldname == 'items.notforloan' && value.authorised_value == 0 && value.lib == '__IGNORE__' ) %]
103                                             For loan
104                                         [% ELSE %]
105                                             [% value.lib | html %]
106                                         [% END %]
107                                     </label>
108                                     <input type="checkbox" name="status-[% status.fieldname | html %]-[% value.authorised_value | html %]" id="[% value.authorised_value | html %]" />
109                                     </li>
110                                   [% END %]
111                               [% END %]
112                               </ul>
113                           </fieldset>
114                       [% END %]
115                   [% END %]
116                 </div>
117         <ol>
118         <li>
119             <br/>
120             <label for="datelastseen">Last inventory date:</label>
121             <input type="text" id="datelastseen" name="datelastseen" value="[% datelastseen | $KohaDates %]" class="datepicker" />
122             (Skip records marked as seen on or after this date.)
123         </li>
124         <li>
125             <label for="ignoreissued">Skip items on loan: </label>
126             [% IF (ignoreissued) %]
127                 <input type="checkbox" id="ignoreissued" name="ignoreissued" checked="checked" />
128             [% ELSE %]
129                 <input type="checkbox" id="ignoreissued" name="ignoreissued" />
130             [% END %]
131         </li>
132         </ol>
133     </fieldset>
134
135         <fieldset class="rows">
136           <legend>Additional options</legend>
137           <ol>
138
139         <li>
140            <label for="CSVexport">Export to CSV file: </label>
141            <input type="checkbox" name="CSVexport" id="CSVexport" />
142         </li>
143         </ol>
144   </fieldset>
145             <input type="hidden" name="op" value="do_it" />
146
147             <fieldset class="action"><input type="submit" value="Submit" class="button" /></fieldset>
148     </form>
149
150     [% END %]
151     [% IF (op) %]
152     <form method="post" action="/cgi-bin/koha/tools/inventory.pl" class="checkboxed">
153     <input type="hidden" name="minlocation" value="[% minlocation | html %]" />
154     <input type="hidden" name="maxlocation" value="[% maxlocation | html %]" />
155     <input type="hidden" name="location" value="[% location | html %]" />
156     <input type="hidden" name="branchcode" value="[% branchcode | html %]" />
157     <input type="hidden" name="datelastseen" value="[% datelastseen | html %]" />
158
159     [% UNLESS uploadedbarcodesflag %]
160       <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>
161     [% END %]
162
163     <table id="inventoryt">
164     <thead>
165         <tr>
166             [% UNLESS uploadedbarcodesflag %]<th>Seen</th>[% END %]
167             <th>Barcode</th>
168             <th>Call number</th>
169             <th>Library</th>
170             <th>Title</th>
171             <th>Not for loan</th>
172             <th>Lost</th>
173             <th>Damaged</th>
174             <th>Withdrawn</th>
175             <th>Last seen</th>
176             <th>Problems</th>
177         </tr>
178     </thead>
179     <tbody>
180     [% FOREACH result IN loop %]
181         <tr>
182             [% UNLESS uploadedbarcodesflag %]
183               <td>
184                 <input type="checkbox" name="SEEN-[% result.itemnumber | html %]" value="1" />
185               </td>
186             [% END %]
187             <td>
188             [% result.barcode | html %]
189             </td>
190             <td>[% result.itemcallnumber | html %]</td>
191             <td>
192                 [% Branches.GetName( result.homebranch ) | html %]
193                 <span class="shelvingloc">[% result.location | html %]</span>
194             </td>
195             <td>
196                 <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% result.biblionumber | uri %]" class="openWin">[% result.title | html %]</a>
197                 [% IF ( result.author ) %]
198                     by <span class="author">[% result.author | html %]</span>
199                 [% END %]
200             </td>
201             <td>
202             [% result.notforloan | html %]
203             </td>
204             <td>
205             [% result.itemlost | html %]
206             </td>
207             <td>
208             [% result.damaged | html %]
209             </td>
210             <td>
211             [% result.withdrawn | html %]
212             </td>
213             <td>
214             [% result.datelastseen | $KohaDates %]
215             </td>
216             <td>
217             [% FOREACH problem IN result.problems %]
218                 [% IF problem.key == 'wrongplace' %]
219                     Found in wrong place<br/>
220                 [% ELSIF problem.key == 'changestatus' %]
221                     Unknown not-for-loan status<br/>
222                 [% ELSIF problem.key == 'not_scanned' %]
223                     Missing (not scanned)<br/>
224                 [% ELSIF problem.key == 'checkedout' %]
225                     Still checked out<br/>
226                 [% ELSIF problem.key == 'no_barcode' %]
227                     No barcode<br/>
228                 [% ELSIF problem.key == 'out_of_order' %]
229                     Item may be shelved out of order<br/>
230                 [% END %]
231             [% END %]
232             </td>
233         </tr>
234     [% END %]
235     </tbody>
236     </table>
237     <div class="spacer"></div>
238     [% UNLESS uploadedbarcodesflag %]
239       <div style="padding : .3em 0"><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>
240       <input type="submit" id="markseenandquit" value="Mark seen and quit" />
241       <input type="submit" value="Mark seen and continue &gt;&gt;" id="markseenandcontinuebutton" />
242       <input type="submit" value="Continue without marking &gt;&gt;" id="continuewithoutmarkingbutton" class="submit" />
243     [% END %]
244     </form>
245
246
247     [% END %]
248
249             </main>
250         </div> <!-- /.col-sm-10.col-sm-push-2 -->
251
252         <div class="col-sm-2 col-sm-pull-10">
253             <aside>
254                 [% INCLUDE 'tools-menu.inc' %]
255             </aside>
256         </div> <!-- .col-sm-2.col-sm-pull-10 -->
257      </div> <!-- /.row -->
258
259 [% MACRO jsinclude BLOCK %]
260     [% Asset.js("js/tools-menu.js") | $raw %]
261     [% INCLUDE 'datatables.inc' %]
262     [% INCLUDE 'calendar.inc' %]
263     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
264     <script type="text/javascript">
265         function checkForm() {
266             if ( $('#uploadbarcodes').val() ) {
267                 if ( !(
268                     $('#branchloop').val()   ||
269                     $('#locationloop').val() ||
270                     $('#minlocation').val()  ||
271                     $('#maxlocation').val()  ||
272                     $('#statuses input:checked').length
273                 ) ) {
274                     return confirm(
275                         _("You have not selected any catalog filters and are about to compare a file of barcodes to your entire catalog.") + "\n\n" +
276                         _("For large catalogs this can result in unexpected behavior") + "\n\n" +
277                         _("Are you sure you want to do this?")
278                     );
279                 }
280             }
281
282             return true;
283         }
284
285         $(document).ready(function(){
286             inventorydt = $('#inventoryt').dataTable($.extend(true, {}, dataTablesDefaults, {
287                 'sPaginationType': 'full_numbers',
288                 [% IF compareinv2barcd %]
289                     // sort on callnumber
290                     "aaSorting": [[ 1, "asc" ]],
291                 [% ELSE %]
292                     // first column contains checkboxes
293                     "aoColumnDefs": [
294                         { "bSortable": false, "bSearchable": false, "aTargets": [ 0 ] },
295                     ],
296                     // 3rd column is callnumber
297                     "aaSorting": [[ 2, "asc" ]],
298                 [% END %]
299                 'fnDrawCallback': function() {
300                     //bind the click handler script to the newly created elements held in the table
301                     $('.openWin').bind('click',function(e){
302                         e.preventDefault();
303                         openWindow(this.href,'marcview',800,600);
304                     });
305                 }
306             } ));
307
308
309             $("#continuewithoutmarkingbutton").click(function(){
310                 inventorydt.fnPageChange( 'next' );
311                 return false;
312             });
313
314             $("#markseenandcontinuebutton").click(function(){
315                 var param = '';
316                 $("input:checked").each(function() {
317                     param += "|" + $(this).attr('name');
318                 });
319                 $.post('/cgi-bin/koha/tools/ajax-inventory.pl', { seen: param });
320                 inventorydt.fnPageChange( 'next' );
321                 return false;
322             });
323
324             $("#markseenandquit").click(function(){
325                 var param = '';
326                 $("input:checked").each(function() {
327                     param += "|" + $(this).attr('name');
328                 });
329                 $.ajax({
330                   type: 'POST',
331                   url: '/cgi-bin/koha/tools/ajax-inventory.pl',
332                   data: { seen: param},
333                   async: false
334                 });
335                 document.location.href = '/cgi-bin/koha/tools/inventory.pl';
336                 return false;
337             });
338
339
340             $(".checkall").click(function(){
341                     $(".checkboxed").checkCheckboxes();
342                     return false;
343                 });
344             $(".clearall").click(function(){
345                     $(".checkboxed").unCheckCheckboxes();
346                     return false;
347                 });
348             $("#inventory_form").on("submit",function(){
349                 return checkForm();
350             });
351
352             // #uploadbarcodes and #compareinv2barcd determine the behavior of
353             // the controls within the barcode fieldset and the optional filters
354             $("#uploadbarcodes").change(function() {
355                 if( $("#uploadbarcodes").val() ) {
356                     $("#setdate").prop('disabled',false);
357                     $("#compareinv2barcd").prop('disabled',false);
358                     $("#compareinv2barcd").attr('checked',true); // default
359                     $("#dont_checkin").prop('disabled',false);
360                     $("#out_of_order").prop('disabled',false);
361                     if( $("#compareinv2barcd").attr('checked') ) {
362                         $("fieldset#optionalfilters").show();
363                         $("#ignoreissued").attr('checked',true); // default
364                     } else {
365                         $("fieldset#optionalfilters").hide();
366                         $("#ignoreissued").attr('checked',false);
367                     }
368                 } else {
369                     $("#setdate").prop('disabled',true);
370                     $("#compareinv2barcd").prop('disabled',true);
371                     $("#compareinv2barcd").attr('checked',false);
372                     $("#dont_checkin").prop('disabled',true);
373                     $("#dont_checkin").attr('checked',false);
374                     $("#out_of_order").prop('disabled',true);
375                     $("#out_of_order").attr('checked',false);
376                     $("fieldset#optionalfilters").show();
377                 }
378             });
379             $("#compareinv2barcd").click(function() {
380                 if( $("#compareinv2barcd").attr('checked') ) {
381                     $("fieldset#optionalfilters").show();
382                     $("#ignoreissued").attr('checked',true); // default
383                 } else {
384                     $("#ignoreissued").attr('checked',false);
385                     $("fieldset#optionalfilters").hide();
386                 }
387             });
388         });
389     </script>
390 [% END %]
391
392 [% INCLUDE 'intranet-bottom.inc' %]