107 lines
4 KiB
Cheetah
107 lines
4 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Reports</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<!-- Additions to enable Calendar system -->
|
|
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css" />
|
|
<!-- End of additions --><!-- Additions to enable Calendar system -->
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-en.js"></script>
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
|
|
<!-- End of additions -->
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" --><!-- TMPL_INCLUDE NAME="menu-reports.inc"-->
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b"><div class="yui-g">
|
|
|
|
<h1>Inventory/Stocktaking</h1>
|
|
<form method="post">
|
|
<h2>Select items you want to check</h2>
|
|
<p>
|
|
Item Location (items.itemcallnumber) between
|
|
<input type="text" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
|
|
and
|
|
<input type="text" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
|
|
</p>
|
|
<p>not seen since
|
|
<input type="text" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
|
|
</p>
|
|
<p>show</label>
|
|
<input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" />
|
|
items beginning at offset
|
|
<input type="text" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" />
|
|
</p>
|
|
<p>
|
|
<input type="submit" value="OK" />
|
|
</p>
|
|
</form>
|
|
|
|
<form method="post">
|
|
<input type="hidden" name="markseen" value="1" />
|
|
<input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
|
|
<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
|
|
<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
|
|
<input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
|
|
<input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" />
|
|
<!-- TMPL_IF NAME="loop" -->
|
|
<table>
|
|
<tr>
|
|
<th>Seen</th>
|
|
<th>Barcode</th>
|
|
<th>Call number</th>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="loop" -->
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1" />
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="barcode" -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="itemcallnumber" -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="title" -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="author" -->
|
|
</td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
<input type="submit" value="Mark seen" />
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="offset" -->
|
|
<form method="post">
|
|
<input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
|
|
<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
|
|
<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
|
|
<input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
|
|
<input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->" />
|
|
<input type="submit" value="<<<" />
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="nextoffset" -->
|
|
<form method="post">
|
|
<input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
|
|
<input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
|
|
<input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
|
|
<input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" />
|
|
<input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->" />
|
|
<input type="submit" value=">>>" />
|
|
</form>
|
|
<!-- /TMPL_IF -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|