Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

85 lines
3.3 KiB

<!-- TMPL_INCLUDE NAME="reports-top.inc" -->
<div id="mainbloc">
<h1 class="reports">Inventory/Stocktaking</h1>
<form method="post">
<h2 class="reports">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><label>not seen since</label>
<input type="text" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->">
</p>
<p><label>show</label>
<input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5">
<i> items beginning at offset</i>
<input type="text" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5">
</p>
<p>
<input type="submit" value="OK" class="button reports">
</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 class="reports">Seen</th>
<th class="reports">Barcode</th>
<th class="reports">Call number</th>
<th class="reports">Title</th>
<th class="reports">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" class="button reports">
</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="&lt;&lt;&lt;" class="button reports">
</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="&gt;&gt;&gt;" class="button reports">
</form>
<!-- /TMPL_IF -->
</div>
<!-- TMPL_INCLUDE NAME="reports-bottom.inc" -->