107 lines
No EOL
4 KiB
Cheetah
107 lines
No EOL
4 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Reports › Inventory/Stocktaking</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
</head>
|
|
<body>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="cat-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> › Inventory/Stocktaking</div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
|
|
<h1>Inventory/Stocktaking</h1>
|
|
<form method="post" action="/cgi-bin/koha/reports/inventory.pl">
|
|
<h2>Select items you want to check</h2>
|
|
<p>
|
|
<label for="minlocation">Item Location (items.itemcallnumber) between</label>
|
|
<input type="text" name="minlocation" id="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->" />
|
|
<label for="maxlocation">and</label>
|
|
<input type="text" name="maxlocation" id="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->" />
|
|
</p>
|
|
<p><label for="datelastseen">not seen since</label>
|
|
<input type="text" name="datelastseen" id="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->" />
|
|
</p>
|
|
<p><label for="pagesize">show</label>
|
|
<input type="text" name="pagesize" id="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5" />
|
|
<label for="offset"> items beginning at offset</label>
|
|
<input type="text" name="offset" id="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5" />
|
|
</p>
|
|
<p>
|
|
<input type="submit" value="OK" />
|
|
</p>
|
|
</form>
|
|
|
|
<!-- TMPL_IF NAME="loop" -->
|
|
<form method="post" action="/cgi-bin/koha/reports/inventory.pl">
|
|
<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" -->" />
|
|
<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" action="/cgi-bin/koha/reports/inventory.pl">
|
|
<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" action="/cgi-bin/koha/reports/inventory.pl">
|
|
<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 class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="reports-menu.inc" -->
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" --> |