691b63161ca735779030ade2463ccfb595cda2eb
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / view_holdsqueue.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE ItemTypes %]
6 [% USE Branches %]
7 [% USE AuthorisedValues %]
8 [% USE ColumnsSettings %]
9 [% USE Koha %]
10 [% SET footerjs = 1 %]
11 [% INCLUDE 'doc-head-open.inc' %]
12 <title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
13 [% INCLUDE 'doc-head-close.inc' %]
14 <style> p { margin-top: 0; }</style>
15 </head>
16
17 <body id="circ_view_holdsqueue" class="circ">
18 [% INCLUDE 'header.inc' %]
19 [% INCLUDE 'cat-search.inc' %]
20
21 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a>
22 &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
23 &rsaquo; <a href="/cgi-bin/koha/circ/view_holdsqueue.pl">Holds queue</a>
24 [% IF ( run_report ) %] &rsaquo; Results[% END %]
25 </div>
26
27 <div class="main container-fluid">
28     <div class="row">
29         <div class="col-sm-12">
30             <main>
31                 <div class="row">
32
33                 [% IF Koha.Preference('CircSidebar') %]
34                     <div class="col-sm-10 col-sm-push-2">
35                 [% ELSE %]
36                     <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
37                 [% END %]
38
39 <h1>Holds queue</h1>
40
41 [% IF ( run_report ) %]
42     [% IF ( total ) %]
43         <div class="results">[% total | html %] items found for
44             [% IF ( branchlimit ) %][% Branches.GetName( branchlimit ) | html %][% ELSE %]All libraries[% END %]
45         </div>
46     [% ELSE %]
47         <div class="dialog message">No items found.</div>
48     [% END %]
49     [% IF ( itemsloop ) %]
50 <table id="holdst">
51         <thead>
52     <tr>
53         <th class="hq-title">Title</th>
54         <th class="hq-collection">Collection</th>
55         <th class="hq-itemtype">Item type</th>
56         <th class="hq-callnumber">Call number</th>
57         <th class="hq-copynumber">Copy number</th>
58         <th class="hq-enumchron">Enumeration</th>
59         <th class="hq-barcode">Barcode</th>
60         <th class="hq-patron">Patron</th>
61         <th class="hq-sendto">Send to</th>
62         <th class="hq-date">Date</th>
63         <th class="hq-notes">Notes</th>
64     </tr>
65     <tr>
66         <td class="hq-title">
67             <span class="filter_column filter_text">
68                 <input class="text_filter" type="text" placeholder="Title">
69             </span>
70         </td>
71         <td class="hq-collection">
72             <span class="filter_column filter_text">
73                 <input type="text" placeholder="Collection">
74             </span>
75         </td>
76         <td class="hq-itemtype">
77             <span class="filter_column filter_text">
78                 <input type="text" placeholder="Item type">
79             </span>
80         </td>
81         <td class="hq-callnumber">
82             <span class="filter_column filter_text">
83                 <input type="text" placeholder="Call number">
84             </span>
85         </td>
86         <td class="hq-copynumber">
87             <span class="filter_column filter_text">
88                 <input type="text" placeholder="Copy number">
89             </span>
90         </td>
91         <td class="hq-enumchron">
92             <span class="filter_column filter_text">
93                 <input type="text" placeholder="Enumeration">
94             </span>
95         </td>
96         <td class="hq-barcode">
97             <span class="filter_column filter_text">
98                 <input type="text" placeholder="Barcode">
99             </span>
100         </td>
101         <td class="hq-patron">
102             <span class="filter_column filter_text">
103                 <input type="text" placeholder="Patron">
104             </span>
105         </td>
106         <td class="hq-sendto">
107             <span class="filter_column filter_text">
108                 <input type="text" placeholder="Send to">
109             </span>
110         </td>
111         <td class="hq-date">
112             <span class="filter_column filter_text">
113                 <input type="text" placeholder="Date">
114             </span>
115         </td>
116         <td class="hq-notes">
117             <span class="filter_column filter_text">
118                 <input type="text" placeholder="Notes">
119             </span>
120         </td>
121     </tr>
122         </thead>
123      <tbody>[% FOREACH itemsloo IN itemsloop %]
124         <tr>
125             <td class="hq-title">
126                 <p><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% itemsloo.biblionumber | uri %]"><strong>[% itemsloo.title | html %]</strong> [% FOREACH s IN itemsloo.subtitle %] [% s | html %][% END %]</a></p>
127                 <p>
128                     <div class="hq-biblionumber content_hidden">[% itemsloo.biblionumber | html %]</div>
129                     <div class="hq-author">[% itemsloo.author | html %]</div>
130                     <div class="hq-pubdata">
131                         [% IF ( itemsloo.publishercode ) %][% itemsloo.publishercode | html %][% END %]
132
133                         [% IF ( itemsloo.publicationyear ) %]
134                             , [% itemsloo.publicationyear | html %]
135                         [% ELSIF ( itemsloo.copyrightdate ) %]
136                             , [% itemsloo.copyrightdate | html %]
137                         [% END %]
138
139                         [% IF ( itemsloo.pages ) %]: [% itemsloo.pages | html %] [% END %]
140
141                         [% IF ( itemsloo.item('size') ) %][% itemsloo.item('size') | html %][% END %]
142
143                         [% IF ( itemsloo.isbn ) %]ISBN: [% itemsloo.isbn | html %][% END %]
144                     </div>
145                 </p>
146             </td>
147             <td class="hq-collection">[% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) | html %]</td>
148             <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.itype ) | html %]</td>
149             <td class="hq-callnumber">[% IF ( itemsloo.location ) %]<em>[% AuthorisedValues.GetByCode( 'LOC', itemsloo.location ) | html %]</em> [% END %][% itemsloo.itemcallnumber | html %]</td>
150             <td class="hq-copynumber">[% itemsloo.copynumber | html %]</td>
151             <td class="hq-enumchron">[% itemsloo.enumchron | html %]</td>
152             <td class="hq-barcode">
153                 [% IF ( itemsloo.item_level_request ) %]
154                     <em>Only item:</em> <strong>[% itemsloo.barcode | html %]</strong>
155                 [% ELSE %]
156                     <strong>[% itemsloo.barcode | html %]</strong> <em>or any available</em>
157                 [% END %]
158             </td>
159             <td class="hq-patron">
160               <p>
161                   [% INCLUDE 'patron-title.inc' patron=itemsloo.patron hide_patron_infos_if_needed=1 link_to="circulation_reserves" %]
162               </p>
163               [% UNLESS Koha.Preference('HidePatronName') %]
164                  <p>[% itemsloo.patron.phone | html %]</p>
165               [% END %]
166             </td>
167             <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) | html %]</td>
168             <td class="hq-date"><span title="[% itemsloo.reservedate | html %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
169             <td class="hq-notes">[% itemsloo.notes | html %]</td>
170         </tr>
171     [% END %]</tbody>
172     </table>
173         [% END %] 
174         [% END %]
175
176 [% UNLESS ( total ) %]
177 <form name="f" action="/cgi-bin/koha/circ/view_holdsqueue.pl" method="post">
178         <fieldset class="rows">
179         <ol>
180         <li>
181             <label for="branchlimit">Library: </label>
182             <select name="branchlimit" id="branchlimit">
183                 <option value="">All</option>
184                 [% PROCESS options_for_libraries libraries => Branches.all( only_from_group => 1 ) %]
185             </select>
186         </li>
187     </ol></fieldset>
188     <fieldset class="action">    <input type="submit" value="Submit" />
189         <input type="hidden" name="run_report" value="1" /></fieldset>
190 </form>
191 [% END %]
192
193                     [% IF Koha.Preference('CircSidebar') %]
194                             </div> <!-- /.col-sm-10.col-sm-push-2 -->
195                             <div class="col-sm-2 col-sm-pull-10">
196                                 <aside>
197                                     [% INCLUDE 'circ-nav.inc' %]
198                                 </aside>
199                             </div> <!-- /.col-sm-2.col-sm-pull-10 -->
200                         </div> <!-- /.row -->
201                     [% END %]
202
203             </main>
204         </div> <!-- /.col-sm-12 -->
205     </div> <!-- /.row -->
206
207 [% MACRO jsinclude BLOCK %]
208     [% INCLUDE 'datatables.inc' %]
209     [% INCLUDE 'columns_settings.inc' %]
210     <script>
211         $(document).ready(function() {
212             var holdst;
213
214             // Setup filters before DataTables initialisation, in case some columns are
215             // hidden by default
216             var filterColumnTimeoutId;
217             var filterColumn = function(e) {
218                 clearTimeout(filterColumnTimeoutId);
219                 filterColumnTimeoutId = setTimeout(function() {
220                     var input = $(e.target);
221                     var idx = input.parents('td').index();
222                     holdst.api().column(idx + ':visible').search(input.val()).draw();
223                 }, 200);
224             };
225             $('#holdst thead input').on('change keyup keydown', filterColumn);
226
227             var columns_settings = [% ColumnsSettings.GetColumns('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
228             var holdst = KohaTable("holdst", {
229                 "aaSorting": [[ 3, "asc" ]],
230                 "aoColumns": [
231                     { "sType": "anti-the" },null,null,null,null,null,null,null,null,{ "sType": "title-string" },null
232                 ],
233                 "sDom": 'B<"clearfix">t',
234                 "bSortCellsTop": true,
235                 "bPaginate": false
236             }, columns_settings);
237
238         });
239     </script>
240 [% END %]
241
242 [% INCLUDE 'intranet-bottom.inc' %]