Bug 21442: Update two-column templates with Bootstrap grid: Circulation part 1
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / pendingreserves.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE ColumnsSettings %]
6 [% USE AuthorisedValues %]
7 [%- USE Branches -%]
8 [%- USE ItemTypes -%]
9 [% SET footerjs = 1 %]
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Koha &rsaquo; Circulation &rsaquo; Holds to pull</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 [% Asset.css("css/datatables.css") | $raw %]
14 </head>
15
16 <body id="circ_pendingreserves" class="circ">
17 [% INCLUDE 'header.inc' %]
18 [% INCLUDE 'circ-search.inc' %]
19
20
21 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Holds to pull</div>
22
23 <div class="main container-fluid">
24     <div class="row">
25         <div class="col-sm-10 col-sm-push-2">
26             <main>
27
28         [% FOR m IN messages %]
29             <div class="dialog [% m.type | html %]">
30                 [% SWITCH m.code %]
31                 [% CASE 'letter_enqueued' %]
32                     <span>The notice has been correctly enqueued.</span>
33                 [% CASE 'no_email_address' %]
34                     <span>The patron does not have an email address defined.</span>
35                 [% CASE 'no_template_notice' %]
36                     <span>There is no notice template with a code 'CANCEL_HOLD_ON_LOST' defined in your system.</span>
37                 [% CASE 'hold_cancelled' %]
38                     <span>The hold has been correctly cancelled.</span>
39                 [% CASE 'hold_placed_at_biblio_level' %]
40                     <span>The hold has been placed on biblio level. It is not possible to determine the item to mark as lost.</span>
41                 [% CASE %]
42                     [% m.code | html %]
43                 [% END %]
44             </div>
45         [% END %]
46
47 <h2>Holds to pull placed between [% from | $KohaDates %] and [% to | $KohaDates %]</h2>
48 <h3>Reported on [% todaysdate | $KohaDates %]</h3>
49 <p>The following holds have not been filled. Please retrieve them and check them in.</p>
50 <div class="searchresults">
51     [% IF ( reserveloop ) %]
52     <table id="holdst">
53     <thead>
54         <tr>
55         <th>Pull this many items</th>
56         <th>Items available</th>
57         <th>Patrons with holds</th>
58         <th>First patron</td>
59         <th class="anti-the">Title</th>
60         <th class="string-sort">Libraries</th>
61         <th>Available call numbers</th>
62         <th>Available copy numbers</th>
63         <th>Available enumeration</th>
64         <th class="string-sort">Available item types</th>
65         <th class="string-sort">Available locations</th>
66         <th class="title-string">Earliest hold date</th>
67         <th>Action</th>
68         </tr>
69     </thead>
70     <tbody>
71         [% FOREACH reserveloo IN reserveloop %]
72         <tr>
73         [% IF ( reserveloo.borrowernumber ) %]
74             <td><p><b>[% reserveloo.pullcount | html %]</b></p></td>
75             <td>[% reserveloo.count | html %]</td>
76             <td>[% reserveloo.rcount | html %]</td>
77             <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% reserveloo.borrowernumber | uri %]">[% reserveloo.firstname | html %] [% reserveloo.surname | html %]</a></td>
78             <td>
79             <p>
80                 [% INCLUDE 'biblio-default-view.inc' biblionumber = reserveloo.biblionumber %]
81                 [% reserveloo.title | html %] [% FOREACH s IN reserveloo.subtitle %] [% s | html %][% END %]</a></p>
82                 [% IF ( reserveloo.author ) %]<p> by [% reserveloo.author | html %]</p>[% END %]
83             </td>
84         [% ELSE %]
85             <td>"</td>
86             <td>"</td>
87             <td>"</td>
88             <td>"</td>
89             <td>"</td>
90         [% END %]
91         <td>
92             [% FOREACH holdingbranch IN reserveloo.holdingbranches %]
93                 [% Branches.GetName ( holdingbranch ) | html %]
94             [% END %]
95         </td>
96         <td><p>[% reserveloo.itemcallnumber | html %]</p></td>
97         <td><p>[% reserveloo.copyno | html %]</p></td>
98         <td><p>[% reserveloo.enumchron | html %]</p></td>
99         <td>
100         [% FOREACH itemType IN reserveloo.itemTypes %]
101             [% ItemTypes.GetDescription( itemType ) | html %]
102         [% END %]
103         </td>
104         <td>
105         [% FOREACH loc IN reserveloo.locations %]
106             [% AuthorisedValues.GetByCode('LOC', loc) | html %]
107         [% END %]
108         </td>
109         <td>
110             <span title="[% reserveloo.reservedate | html %]">[% reserveloo.reservedate | $KohaDates %] in [% Branches.GetName ( reserveloo.branch ) | html %]</span>
111         </td>
112         <td>
113             <form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post">
114                 <input type="hidden" name="op" value="cancel_reserve" />
115                 <input type="hidden" name="reserve_id" value="[% reserveloo.reserve_id | html %]" />
116                 [% IF reserveloo.holdingbranch != reserveloo.homebranch %]
117                     <input type="submit" value="Cancel hold and return to : [% Branches.GetName( reserveloo.homebranch ) | html %]" />
118                 [% ELSE %]
119                     <input type="submit" value="Cancel hold" />
120                 [% END %]
121             </form>
122
123         [% IF Koha.Preference('CanMarkHoldsToPullAsLost') != 'do_not_allow' %]
124             [% IF reserveloo.itemnumber %]
125                 <form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post">
126                     <input type="hidden" name="reserve_id" value="[% reserveloo.reserve_id | html %]" />
127                     [% IF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow' %]
128                         <input type="hidden" name="op" value="mark_as_lost" />
129                         <input type="submit" value="Mark item as lost" />
130                     [% ELSIF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow_and_notify' %]
131                         <input type="hidden" name="op" value="mark_as_lost_and_notify" />
132                         <input type="submit" value="Mark lost and notify patron" />
133                     [% END %]
134                 </form>
135             [% ELSE %]
136                 <span>Biblio level hold.</span>
137             [% END %]
138         [% END %]
139         </tr>
140         [% END %]
141     </tbody>
142     <tfoot>
143         <tr>
144         <td><input type="text" class="filter" data-column_num="0" placeholder="Pull this many items" style="width:95%"/></td>
145         <td><input type="text" class="filter" data-column_num="1" placeholder="Items available" style="width:95%"/></td>
146         <td><input type="text" class="filter" data-column_num="2" placeholder="Patron holds" style="width:95%"/></td>
147         <td><input type="text" class="filter" data-column_num="3" placeholder="Patron name" style="width:95%"/></td>
148         <td><input type="text" class="filter" data-column_num="4" placeholder="Title" style="width:95%"/></td>
149         <td id="homebranchfilter"></td>
150         <td><input type="text" class="filter" data-column_num="6" placeholder="Call number" style="width:95%"/></td>
151         <td><input type="text" class="filter" data-column_num="7" placeholder="Available copy" style="width:95%"/></td>
152         <td><input type="text" class="filter" data-column_num="8" placeholder="Available enumeration" style="width:95%"/></td>
153         <td id="itemtype-filter"></td>
154         <td id="locationfilter"></td>
155         <td></td>
156         <td></td>
157         </tr>
158     </tfoot>
159     </table>
160     [% ELSE %]
161         <b>No items found.</b>
162     [% END %]
163 </div>
164
165
166             </main>
167         </div> <!-- /.col-sm-10.col-sm-push-2 -->
168
169         <div class="col-sm-2 col-sm-pull-10">
170             <aside>
171
172 <div id="filters">
173
174 <form action="/cgi-bin/koha/circ/pendingreserves.pl" method="post" >
175 <fieldset class="brief">
176 <h4>Refine results</h4>
177 <ol>
178 <li>
179 <label for="from">
180     Start date:
181 </label>
182 <input type="text" size="10" id="from" name="from" value="[% from | $KohaDates %]" class="datepickerfrom" />
183 </li>
184 <li><label for="to">
185     End date:
186 </label>
187 <input type="text" size="10" id="to" name="to" value="[% to | $KohaDates %]" class="datepickerto" />
188 </li>
189 </ol>
190
191 [% IF ( HoldsToPullEndDate ) %]
192     <p><i>(Inclusive, default is [% HoldsToPullStartDate | html %] days ago to [% HoldsToPullEndDate | html %] days ahead. Set other date ranges as needed.)</i></p>
193 [% ELSE %]
194     <p><i>(Inclusive, default is [% HoldsToPullStartDate | html %] days ago to today. Set other date ranges as needed.)</i></p>
195 [% END %]
196
197 <fieldset class="action"><input type="submit" name="run_report" value="Submit" class="submit"/></fieldset>
198 </fieldset>
199 </form>
200
201 </div>
202             </aside>
203         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
204      </div> <!-- /.row -->
205
206 [% MACRO jsinclude BLOCK %]
207     [% INCLUDE 'calendar.inc' %]
208     [% INCLUDE 'datatables.inc' %]
209     [% INCLUDE 'columns_settings.inc' %]
210     <script>
211         $(document).ready(function() {
212           var columns_settings = [% ColumnsSettings.GetColumns('circ', 'holds', 'holds-to-pull', 'json') | $raw %];
213           var holdst = KohaTable("holdst", {
214             "aoColumnDefs": [
215                 { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
216                 { "sType": "title-string", "aTargets" : [ "title-string" ] },
217                 { "sType": "string", "aTargets": [ "string-sort" ] }
218             ],
219             "sPaginationType": "full_numbers"
220           }, columns_settings);
221           holdst.fnAddFilters("filter");
222           [%# add separateData function to cleanse jQuery select lists by breaking apart strings glued with BR tags and then de-duplicating any repeated library codes %]
223           function separateData ( ColumnData ){
224             var cD = ColumnData;
225             var new_array = new Array();
226             for ( j=0 ; j<cD.length ; j++ ) {
227                 var split_array = cD[j].split(/\n/gi);
228                 for ( k=0 ; k<split_array.length ; k++ ){
229                     var str = $.trim(split_array[k].replace(/[\n\r]/g, ''));
230                     if ($.inArray(str, new_array) == -1 && str.length > 0 ) {
231                         new_array.push(str);
232                     }
233                 }
234             }
235             new_array.sort();
236             return new_array;
237           }
238           [%# add SeparateData function into createSelect function, so that it does the createSelect on clean data %]
239           function createSelect( data ) {
240               data = separateData(data);
241               var r='<select style="width:99%"><option value="">' + _("None") + '</option>', i, len=data.length;
242               for ( i=0 ; i<len ; i++ ) {
243                   r += '<option value="'+data[i]+'">'+data[i]+'</option>';
244               }
245               return r+'</select>';
246           }
247           $("#homebranchfilter").each( function () {
248               $(this).html( createSelect( holdst.fnGetColumnData(5) ) );
249               $('select', this).change( function () {
250                   var filter_value = $(this).val();
251                   holdst.fnFilter( filter_value, 5, true );
252               });
253           });
254           $("#itemtype-filter").each( function () {
255               $(this).html( createSelect( holdst.fnGetColumnData(9) ) );
256               $('select', this).change( function () {
257                   holdst.fnFilter( $(this).val(), 9 );
258               });
259           });
260           $("#locationfilter").each( function () {
261               $(this).html( createSelect( holdst.fnGetColumnData(10) ) );
262               $('select', this).change( function () {
263                   holdst.fnFilter( $(this).val(), 10 );
264               });
265           });
266         });
267     </script>
268 [% END %]
269
270 [% INCLUDE 'intranet-bottom.inc' %]