[Koha-cvs] koha/koha-tmpl/intranet-tmpl/prog/en/tools inve... [rel_3_0]

paul poulain paul at koha-fr.org
Mon Oct 30 11:08:07 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	paul poulain <tipaul>	06/10/30 10:08:07

Added files:
	koha-tmpl/intranet-tmpl/prog/en/tools: inventory.tmpl 

Log message:
	moving inventory to tools directory

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/tools/inventory.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1

Patches:
Index: inventory.tmpl
===================================================================
RCS file: inventory.tmpl
diff -N inventory.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ inventory.tmpl	30 Oct 2006 10:08:07 -0000	1.1.2.1
@@ -0,0 +1,108 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Inventory <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!--TMPL_INCLUDE NAME="menus.inc" --><!-- TMPL_INCLUDE NAME="menu-reports.inc"-->
+<!-- Additions to enable Calendar system -->
+<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-system.css">
+<!-- End of additions --><!-- Additions to enable Calendar system -->
+<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar.js"></script>
+<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-en.js"></script>
+<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/includes/calendar/calendar-setup.js"></script>
+    <h1>Inventory/Stocktaking</h1>
+    <form method="post">
+        <fieldset>
+        <legend>Select items you want to check</legend>
+        <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>
+        </fieldset>
+    </form>
+    <form  name="barcodefile" method="post">
+        <fieldset>
+            <legend>Use a barcode file</legend>
+            <p>barcode filename : <input type="file" name="uploadbarcodes" /></p>
+            <p>Set datelastseen to : <input type="text" name="setdate" /></p>
+            <p><input type="submit" value="OK" class="button reports"></p>
+        </fieldset>
+    </form>
+    <!--TMPL_IF Name="Number" --><p><!--TMPL_VAR Name="Number"--> items modified : datelastseen set to <!--TMPL_VAR Name="date"--></p><!-- /TMPL_IF-->
+    <!--TMPL_IF Name="errorfile" --><p class="error"><!--TMPL_VAR Name="errorfile"--> can't be opened</p><!-- /TMPL_IF-->
+    <!--TMPL_LOOP Name="errorloop"-->
+        <p class="error">
+            <!--TMPL_VAR Name="barcode"-->
+            <!--TMPL_IF Name="ERR_BARCODE"--> : barcode not found<!--/TMPL_IF-->
+            <!--TMPL_IF Name="ERR_WTHDRAWN"--> : item withdrawn<!--/TMPL_IF-->
+            <!--TMPL_IF Name="ERR_ONLOAN_RET"--> : item was on loan. It was returned before marked as seen<!--/TMPL_IF-->
+            <!--TMPL_IF Name="ERR_ONLOAN_NOT_RET"--> : item was on loan. couldn't be returned.<!--/TMPL_IF-->
+        </p>
+    <!-- /TMPL_LOOP-->
+    <!-- TMPL_IF NAME="loop" -->
+    <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" -->">
+    <table>
+        <tr>
+            <th>Seen</th>
+            <th>Barcode</th>
+            <th>Title</th>
+            <th>Unseen since</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>
+                <p><b><!-- TMPL_VAR NAME="itemcallnumber" --></b> - <!-- TMPL_VAR NAME="title" --></p>
+                <p><!-- TMPL_VAR NAME="author" --></p>
+            </td>
+            <td>
+                <p><!-- TMPL_VAR name="datelastseen" --></p>
+            </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="&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="intranet-bottom.inc" -->





More information about the Koha-cvs mailing list