moving calendar to lib
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / inventory.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Reports</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!--TMPL_INCLUDE NAME="menus.inc" --><!-- TMPL_INCLUDE NAME="menu-reports.inc"-->
5 <!-- Additions to enable Calendar system -->
6 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css">
7 <!-- End of additions --><!-- Additions to enable Calendar system -->
8 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
9 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-en.js"></script>
10 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
11 <!-- End of additions -->
12
13         <h1>Inventory/Stocktaking</h1>
14         <form method="post">
15                 <h2>Select items you want to check</h2>
16                 <p>
17                         Item Location (items.itemcallnumber) between 
18                                 <input type="text" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" /> 
19                         and 
20                                 <input type="text" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
21                 </p>
22                 <p>not seen since
23                         <input type="text" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
24                 </p>
25                 <p>show</label>
26                         <input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" />
27                          items beginning at offset
28                         <input type="text" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" />
29                 </p>
30                 <p>
31                         <input type="submit" value="OK" />
32                 </p>
33         </form>
34         
35         <form method="post">
36         <input type="hidden" name="markseen" value="1" />
37         <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
38         <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
39         <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
40         <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
41         <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" />
42         <!-- TMPL_IF NAME="loop" -->
43         <table>
44                 <tr>
45                         <th>Seen</th>
46                         <th>Barcode</th>
47                         <th>Call number</th>
48                         <th>Title</th>
49                         <th>Author</th>
50                 </tr>
51         <!-- TMPL_LOOP NAME="loop" -->
52                 <tr>
53                         <td>
54                                 <input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1" />
55                         </td>
56                         <td>
57                                 <!-- TMPL_VAR NAME="barcode" -->
58                         </td>
59                         <td>
60                                 <!-- TMPL_VAR NAME="itemcallnumber" -->
61                         </td>
62                         <td>
63                                 <!-- TMPL_VAR NAME="title" -->
64                         </td>
65                         <td>
66                                 <!-- TMPL_VAR NAME="author" -->
67                         </td>
68                 </tr>
69         <!-- /TMPL_LOOP -->
70         </table>
71         <input type="submit" value="Mark seen" />
72         </form>
73         <!-- /TMPL_IF -->
74         <!-- TMPL_IF NAME="offset" -->
75         <form method="post">
76                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
77                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
78                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
79                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
80                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->" />
81                 <input type="submit" value="&lt;&lt;&lt;" />
82         </form>
83         <!-- /TMPL_IF -->
84         <!-- TMPL_IF NAME="nextoffset" -->
85         <form method="post">
86                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
87                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
88                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
89                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
90                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->" />
91                 <input type="submit" value="&gt;&gt;&gt;" />
92         </form>
93         <!-- /TMPL_IF -->
94
95 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->