adding bookshelf features :
[koha.git] / koha-tmpl / intranet-tmpl / default / fr / reports / inventory.tmpl
1 <!-- TMPL_INCLUDE NAME="reports-top.inc" -->
2 <div id="mainbloc">
3         <h1 class="reports">Inventaire/récolement</h1>
4         <form method="post">
5                 <h2 class="reports">Sélectionnez les exemplaires que vous souhaitez vérifier</h2>
6                 <p>
7                         Localisation de l'exemplaire (items.itemcallnumber) entre <input type="text" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->"> et <input type="text" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->">
8                 </p>
9                 <p><label>pas vu depuis</label>
10                         <input type="text" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->">
11                 </p>
12                 <p><label>voir</label>
13                         <input type="text" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->" maxlength="5" size="5"><i> exemplaires commençant au </i> <input type="text" name="offset" value="<!-- TMPL_VAR NAME="offset" -->" size="5" maxlength="5">
14                 </p>
15                 <p>
16                         <input type="submit" value="OK" class="button reports">
17                 </p>
18         </form>
19         
20         <form method="post">
21         <input type="hidden" name="markseen" value="1">
22         <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->">
23         <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->">
24         <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->">
25         <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->">
26         <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="offset" -->">
27         <!-- TMPL_IF NAME="loop" -->
28         <table>
29                 <tr>
30                         <th class="reports">Vu</th>
31                         <th class="reports">Code Barre</th>
32                         <th class="reports">Cote</th>
33                         <th class="reports">Titre</th>
34                         <th class="reports">Auteur</th>
35                 </tr>
36         <!-- TMPL_LOOP NAME="loop" -->
37                 <tr>
38                         <td>
39                                 <input type="checkbox" name="SEEN-<!-- TMPL_VAR NAME="itemnumber" -->" value="1">
40                         </td>
41                         <td>
42                                 <!-- TMPL_VAR NAME="barcode" -->
43                         </td>
44                         <td>
45                                 <!-- TMPL_VAR NAME="itemcallnumber" -->
46                         </td>
47                         <td>
48                                 <!-- TMPL_VAR NAME="title" -->
49                         </td>
50                         <td>
51                                 <!-- TMPL_VAR NAME="author" -->
52                         </td>
53                 </tr>
54         <!-- /TMPL_LOOP -->
55         </table>
56         <input type="submit" value="Cocher vu" class="button reports">
57         </form>
58         <!-- /TMPL_IF -->
59         <!-- TMPL_IF NAME="offset" -->
60         <form method="post">
61                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->">
62                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->">
63                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->">
64                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->">
65                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="prevoffset" -->">
66                 <input type="submit" value="<<<" class="button reports">
67         </form>
68         <!-- /TMPL_IF -->
69         <!-- TMPL_IF NAME="nextoffset" -->
70         <form method="post">
71                 <input type="hidden" name="minlocation" value="<!-- TMPL_VAR NAME="minlocation" -->">
72                 <input type="hidden" name="maxlocation" value="<!-- TMPL_VAR NAME="maxlocation" -->">
73                 <input type="hidden" name="datelastseen" value="<!-- TMPL_VAR NAME="datelastseen" -->">
74                 <input type="hidden" name="pagesize" value="<!-- TMPL_VAR NAME="pagesize" -->">
75                 <input type="hidden" name="offset" value="<!-- TMPL_VAR NAME="nextoffset" -->">
76                 <input type="submit" value=">>>" class="button reports">
77         </form>
78         <!-- /TMPL_IF -->
79 </div>
80 <!-- TMPL_INCLUDE NAME="reports-bottom.inc" -->