Modifications to enable YUI-Grids layout structure. Unfinished.
[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="header.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 <div id="doc3" class="yui-t2">
14    
15    <div id="bd">
16         <div id="yui-main">
17         <div class="yui-b"><div class="yui-g">
18
19         <h1>Inventory/Stocktaking</h1>
20         <form method="post">
21                 <h2>Select items you want to check</h2>
22                 <p>
23                         Item Location (items.itemcallnumber) between 
24                                 <input type="text" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" /> 
25                         and 
26                                 <input type="text" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
27                 </p>
28                 <p>not seen since
29                         <input type="text" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
30                 </p>
31                 <p>show</label>
32                         <input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" />
33                          items beginning at offset
34                         <input type="text" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" />
35                 </p>
36                 <p>
37                         <input type="submit" value="OK" />
38                 </p>
39         </form>
40         
41         <form method="post">
42         <input type="hidden" name="markseen" value="1" />
43         <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
44         <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
45         <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
46         <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
47         <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" />
48         <!-- TMPL_IF NAME="loop" -->
49         <table>
50                 <tr>
51                         <th>Seen</th>
52                         <th>Barcode</th>
53                         <th>Call number</th>
54                         <th>Title</th>
55                         <th>Author</th>
56                 </tr>
57         <!-- TMPL_LOOP NAME="loop" -->
58                 <tr>
59                         <td>
60                                 <input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1" />
61                         </td>
62                         <td>
63                                 <!-- TMPL_VAR NAME="barcode" -->
64                         </td>
65                         <td>
66                                 <!-- TMPL_VAR NAME="itemcallnumber" -->
67                         </td>
68                         <td>
69                                 <!-- TMPL_VAR NAME="title" -->
70                         </td>
71                         <td>
72                                 <!-- TMPL_VAR NAME="author" -->
73                         </td>
74                 </tr>
75         <!-- /TMPL_LOOP -->
76         </table>
77         <input type="submit" value="Mark seen" />
78         </form>
79         <!-- /TMPL_IF -->
80         <!-- TMPL_IF NAME="offset" -->
81         <form method="post">
82                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
83                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
84                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
85                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
86                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->" />
87                 <input type="submit" value="&lt;&lt;&lt;" />
88         </form>
89         <!-- /TMPL_IF -->
90         <!-- TMPL_IF NAME="nextoffset" -->
91         <form method="post">
92                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
93                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
94                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
95                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
96                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->" />
97                 <input type="submit" value="&gt;&gt;&gt;" />
98         </form>
99         <!-- /TMPL_IF -->
100 </div>
101 </div>
102 </div>
103
104 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
105 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->