MT2116 : Addons to the CSV Export
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / batchMod-del.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Tools &rsaquo; Batch Deletion of Items</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5 <script type="text/JavaScript" language="JavaScript">
6 //<![CDATA[
7          $(document).ready(function() {
8             $("#itemst").tablesorter();
9          });
10 //]]>
11 </script>
12 <!-- TMPL_INCLUDE NAME="calendar.inc" -->
13 </head>
14 <body>
15 <!-- TMPL_INCLUDE NAME="header.inc" -->
16 <!-- TMPL_INCLUDE NAME="cat-search.inc"-->
17
18 <div id="breadcrumbs">
19         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
20         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
21         <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Delete batches of items</a>
22 </div>
23
24 <div id="doc3" class="yui-t2">
25     <div id="bd">
26         <div id="yui-main">
27             <div class="yui-b">
28                 <h1>Batch deletion</h1>
29             <!-- TMPL_IF NAME="barcode_not_unique" --><div class="dialog alert"><strong>Error saving item</strong>: Barcode must be unique.</div><!-- /TMPL_IF -->
30             <!-- TMPL_IF NAME="no_next_barcode" --><div class="dialog alert"><strong>Error saving items</strong>: Unable to automatically determine values for barcodes. No item has been inserted.</div><!-- /TMPL_IF -->
31             <!-- TMPL_IF NAME="book_on_loan" --><div class="dialog alert"><strong>Cannot Delete</strong>: item is checked out.</div><!-- /TMPL_IF -->
32             <!-- TMPL_IF NAME="book_reserved" --><div class="dialogalert"><strong>Cannot Delete</strong>: item has a waiting hold.</div><!-- /TMPL_IF -->
33
34 <!-- TMPL_IF name="item_loop" -->
35     <!-- TMPL_UNLESS name="action" -->
36
37     <!-- TMPL_IF name="notfoundbarcodes" -->
38             <div class="error"><p>Warning, the following barcodes were not found :</p>
39             <table>
40                 <thead>
41                     <tr>
42                         <th>Barcode</th>
43                     </tr>
44                 </thead>
45                 <tbody>
46                     <!-- TMPL_LOOP name="notfoundbarcodes" -->
47                         <tr><td><!-- TMPL_VAR name="barcode" --></td></tr>
48                     <!-- /TMPL_LOOP -->
49                 </tbody>
50             </table></div>
51             <p>The following barcodes were found : </p>
52         <!-- /TMPL_IF -->
53
54
55         <form name="f" action="batchMod.pl" method="post">
56         <div id="cataloguing_additem_itemlist">
57                 <div style="overflow:auto">
58                 <table id="itemst">
59                     <thead>
60                         <tr>
61                             <th>&nbsp;</th>
62                             <!-- TMPL_LOOP NAME="item_header_loop" --> 
63                             <th> <!-- TMPL_VAR NAME="header_value" --> </th>
64                             <!-- /TMPL_LOOP --> 
65                         </tr>
66                     </thead>
67                     <tbody>
68                     <!-- TMPL_LOOP NAME="item_loop" --> <tr> <!-- TMPL_IF Name="nomod"--> <td class="error">Cannot Edit</td><!--TMPL_ELSE--><td><input type="checkbox" name="itemnumber" value="<!--TMPL_VAR Name="itemnumber"-->" id="row<!-- TMPL_VAR NAME="itemnumber" -->" checked="checked" /></td><!--/TMPL_IF-->
69                         <!-- TMPL_LOOP NAME="item_value" --> <td><!-- TMPL_VAR ESCAPE="HTML" NAME="field" --></td> 
70                                         <!-- /TMPL_LOOP --> </tr>
71                     <!-- /TMPL_LOOP -->
72                     </tbody>
73                 </table>
74                 </div>
75         </div>
76         <!-- TMPL_IF name="show" -->
77                 <div id="cataloguing_additem_newitem">
78              <input type="hidden" name="op" value="<!-- TMPL_VAR NAME="op" -->" />
79              <p>This will delete the selected items.</p>
80              <input type="hidden" name="del" value="1" />
81              <fieldset class="action">    
82                 <input type="submit" name="submit" value="Go" />
83             </fieldset>
84         </div>
85         <!-- /TMPL_IF -->
86     <!-- /TMPL_UNLESS -->
87 <!-- TMPL_ELSE -->
88     <p>No item found</p>
89 <!-- /TMPL_IF -->
90
91 <!-- TMPL_IF name="action" -->
92         <p><!-- TMPL_VAR NAME="deleted_items" --> item(s) deleted.</p>
93         <!-- TMPL_IF NAME="not_deleted_items" -->
94             <p><!-- TMPL_VAR NAME="not_deleted_items" --> item(s) could not be deleted : <!-- TMPL_LOOP NAME="not_deleted_itemnumbers" --><!-- TMPL_VAR NAME="itemnumber" --><!-- /TMPL_LOOP --></p>
95         <!-- /TMPL_IF -->
96         <!-- TMPL_IF NAME="not_deleted_loop" -->
97         <table id="itemst">
98                 <thead>
99                     <tr>
100                         <th>Itemnumber</th>
101                         <th>Barcode</th>
102                         <th>Reason</th>
103                     </tr>
104                 </thead>
105                 <tbody>
106                     <!-- TMPL_LOOP name="not_deleted_loop" -->
107                         <tr>
108                             <td><!-- TMPL_VAR name="itemnumber" --></td>
109                             <td><!-- TMPL_VAR name="barcode" --></td>
110                             <td><!-- TMPL_IF name="book_on_loan" -->Item is checked out<!-- TMPL_ELSIF name="book_reserved" -->Item has a waiting hold<!-- /TMPL_IF --></td>
111                         </tr>
112                     <!-- /TMPL_LOOP -->
113                 </tbody>
114             </table>
115
116         <!-- /TMPL_IF -->
117
118         <p><a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Back</a></p>
119 <!-- /TMPL_IF -->
120
121 </div>
122 </div>
123         <div class="yui-b">
124             <!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
125         </div>
126     </div>
127 </div>
128 </body>
129 </html>