Bug 19623: (follow-up) Correct footer include in pop-up windows
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / overdue.tt
1 [% USE KohaDates %]
2 [%- USE Branches -%]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha &rsaquo; Circulation &rsaquo; Items overdue as of [% todaysdate %]</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
8 <style type="text/css">
9     .sql {display:none;}
10 </style>
11 </head>
12
13 <body id="circ_overdue" class="circ">
14 [% INCLUDE 'header.inc' %]
15 [% INCLUDE 'circ-search.inc' %]
16
17 <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; Overdues as of [% todaysdate %]</div>
18
19 <div id="doc3" class="yui-t2">
20
21    <div id="bd">
22         <div id="yui-main">
23         <div class="yui-b">
24
25 [% IF ( noreport ) %]
26   <h2>Overdue report</h2>
27   <p>Please choose one or more filters to proceed.</p>
28 [% ELSE %]
29
30 [% IF ( overdueloop ) %]
31
32   <h2>[% nnoverdue %] [% IF ( noverdue_is_plural ) %]Items[% ELSE %]Item[% END %] overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70%;">(Filtered. <a href="/cgi-bin/koha/circ/overdue.pl">Reset filter</a>)</span>[% END %]</h2>
33
34   <p>
35     [% IF ( isfiltered ) %]
36       <a href="overdue.pl?op=csv&amp;[% csv_param_string |html %]">Download file of displayed overdues</a>
37     [% ELSE %]
38       <a href="overdue.pl?op=csv">Download file of all overdues</a>
39     [% END %]
40   </p>
41
42   <div class="sql"><pre>[% sql |html %]</pre></div>
43   <div class="searchresults">
44     <table id="overduest">
45       <thead>
46         <tr>
47           <th class="title-string">Due date</th>
48           <th>Patron</th>
49           <th>Library</th>
50           <th>Title</th>
51           <th>Barcode</th>
52           <th>Call number</th>
53           <th>Price</th>
54         </tr>
55       </thead>
56       [%- BLOCK subject -%]Overdue:[%- END -%]
57       <tbody>
58       [% FOREACH overdueloo IN overdueloop %]
59         <tr>
60           <td><span title="[% overdueloo.duedate %]">[% overdueloo.duedate | $KohaDates %]</span></td>
61           <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% overdueloo.borrowernumber %]">[% overdueloo.surname %][% IF (overdueloo.firstname) %], [% overdueloo.firstname %][% END %] ([% overdueloo.cardnumber %])</a>
62           [% IF ( overdueloo.email ) %][<a href="mailto:[% overdueloo.email %]?subject=[% INCLUDE subject %] [% overdueloo.title |html %]">email</a>][% END %]
63           [% IF ( overdueloo.phone ) %]([% overdueloo.phone %])[% ELSIF ( overdueloo.mobile ) %]([% overdueloo.mobile %])[% ELSIF ( overdueloo.phonepro ) %]([% overdueloo.phonepro %])[% END %]</td>
64           <td>[% IF overdueloo.branchcode %][% Branches.GetName( overdueloo.branchcode ) %][% END %]</td>
65           <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = overdueloo.biblionumber %][% overdueloo.title |html %]  [% overdueloo.subtitle %]</a> [% IF ( overdueloo.author ) %], by [% overdueloo.author %][% END %][% IF ( overdueloo.enumchron ) %], [% overdueloo.enumchron %][% END %]</td>
66           <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber %]&amp;itemnumber=[% overdueloo.itemnum %]#item[% overdueloo.itemnum %]">[% overdueloo.barcode %]</a></td>
67           <td>[% overdueloo.itemcallnumber %]</td>
68           <td>[% overdueloo.replacementprice %]</td>
69         </tr>
70       [% END %]
71       </tbody>
72     </table>
73   </div>
74
75 [% ELSE %]
76
77   <h2>Overdue report</h2>
78   [% IF ( isfiltered ) %]
79     <p>There are no overdues matching your search. <a href="/cgi-bin/koha/circ/overdue.pl">Reset filter</a></p>
80   [% ELSE %]
81     <p>There are no overdues.</p>
82   [% END %]
83
84 [% END %]  <!-- overdueloop -->
85 [% END %]  <!-- noreport -->
86
87 </div>
88 </div>
89 <div class="yui-b">
90 <form method="post" action="/cgi-bin/koha/circ/overdue.pl">
91   <fieldset class="brief">
92 <h4>Filter on:</h4>
93         <fieldset><legend>Date due:</legend>
94         <ol>
95     <li><label for="from">From:</label>
96     <input type="text" id="from" name="dateduefrom" size="10" value="[% dateduefrom | $KohaDates %]" class="datepickerfrom" />
97         </li>
98         <li>
99     <label for="to">To:</label>
100     <input type="text" id="to" name="datedueto" size="10" value="[% datedueto | $KohaDates %]" class="datepickerto" />
101     </li>
102     </ol></fieldset>
103     <ol>
104     <li><label>Name or cardnumber:</label><input type="text" name="borname" value="[% borname |html %]" /></li>
105     <li><label>Patron category:</label><select name="borcat" id="borcat"><option value="">Any</option>
106       [% FOREACH borcatloo IN borcatloop %]
107         [% IF ( borcatloo.selected ) %]<option value="[% borcatloo.value |html %]" selected="selected">[% borcatloo.catname %]</option>[% ELSE %]<option value="[% borcatloo.value |html %]">[% borcatloo.catname %]</option>[% END %]
108       [% END %]
109       </select>
110     </li>
111     <li><label>Patron flags:</label>
112         <select name="borflag" size="1" id="borflag">
113             <option value="">None</option>
114             [% IF ( borflag_gonenoaddress ) %]<option value="gonenoaddress" selected="selected">Address in question</option>
115             [% ELSE %]<option value="gonenoaddress">Address in question</option>[% END %]
116             [% IF ( borflag_debarred ) %]<option value="debarred" selected="selected">Restricted</option>
117             [% ELSE %]<option value="debarred">Restricted</option>[% END %]
118             [% IF ( borflag_lost ) %]<option value="lost" selected="selected">Lost card</option>
119             [% ELSE %]<option value="lost">Lost card</option>[% END %]
120         </select>
121     </li>
122         [% FOREACH patron_attr_filter_loo IN patron_attr_filter_loop %]
123                 <!-- domid cgivalue ismany isclone ordinal code description repeatable authorised_value_category -->
124                 <li>
125                         <label>[% patron_attr_filter_loo.description %]:</label>
126             [% IF ( patron_attr_filter_loo.authorised_value_category ) %]
127                 <script type="text/javascript" x-code="[% patron_attr_filter_loo.code |html %]">create_auto_completion_responder([% patron_attr_filter_loo.domid %],"[% patron_attr_filter_loo.code |html %]");</script>
128                                 <span id="pattrodue-getready-[% patron_attr_filter_loo.domid %]">
129                                                 <div class="pattrodue-autocomplete">
130                                                         <input autocomplete="off" id="pattrodue-input-[% patron_attr_filter_loo.domid %]" name="patron_attr_filter_[% patron_attr_filter_loo.code |html %]" value="[% patron_attr_filter_loo.cgivalue |html %]"  class="pattrodue-input" type="text" />
131                                                 </div>
132                                 </span>
133                         [% ELSE %]
134                                 <input type="text" name="patron_attr_filter_[% patron_attr_filter_loo.code |html %]" value="[% patron_attr_filter_loo.cgivalue |html %]"/>
135                         [% END %]
136                         [% IF ( patron_attr_filter_loo.repeatable ) %]
137                 <a href="#" onclick="clone_parent(this); return false;">Add</a>
138                 [% IF ( patron_attr_filter_loo.isclone ) %]
139                                     <a href="#" onclick="delete_parent(this); return false;" style="visibility: visible">Delete</a>
140                 [% ELSIF ( patron_attr_filter_loo.ismany ) %]
141                                     <a href="#" onclick="delete_parent(this); return false;" style="visibility: visible">Delete</a>
142                 [% ELSE %]
143                                     <a href="#" onclick="delete_parent(this); return false;" style="visibility: hidden">Delete</a>
144                 [% END %]
145                         [% END %]
146                 </li>
147         [% END %]
148
149     <li><label>Item type:</label><select name="itemtype" id="itemtype"><option value="">Any</option>
150       [% FOREACH itemtypeloo IN itemtypeloop %][% IF ( itemtypeloo.selected ) %]
151         <option value="[% itemtypeloo.value |html %]" selected="selected">[% itemtypeloo.itemtypename %]</option>[% ELSE %]
152         <option value="[% itemtypeloo.value |html %]">[% itemtypeloo.itemtypename %]</option>[% END %]
153       [% END %]
154       </select>
155     </li>
156
157     <li>
158         <label>Item home library:</label>
159         <select name="homebranch" id="homebranch">
160             <option value="">Any</option>
161             [% PROCESS options_for_libraries libraries => Branches.all( selected => homebranchfilter ) %]
162         </select>
163     </li>
164
165     <li>
166         <label>Item holding library:</label>
167         <select name="holdingbranch" id="holdingbranch">
168             <option value="">Any</option>
169             [% PROCESS options_for_libraries libraries => Branches.all( selected => holdingbranchfilter ) %]
170         </select>
171     </li>
172
173     <li>
174         <label>Library of the patron:</label>
175         <select name="branch" id="branch">
176             <option value="">Any</option>
177             [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %]
178         </select>
179     </li>
180
181 <li class="radio"><label for="showall">Show any items currently checked out:</label>
182         [% IF ( showall ) %]
183             <input type="checkbox" id="showall" name="showall" value="show" checked="checked" />
184     [% ELSE %]
185         <input type="checkbox" id="showall" name="showall" value="show" />
186     [% END %]
187 </li>
188 </ol>
189    <fieldset class="action">
190       <input type="submit" value="Apply filter" class="submit" />
191       <input type="hidden" name="op" value="apply filter" />
192    </fieldset>
193    </fieldset>
194   </form>
195 </div>
196 </div>
197
198 [% MACRO jsinclude BLOCK %]
199     [% INCLUDE 'calendar.inc' %]
200     [% INCLUDE 'datatables.inc' %]
201     <script type="text/javascript">
202         function clone_parent(node) {
203             var parent = node.parentNode;
204             var clone = parent.cloneNode(true);
205             parent.parentNode.insertBefore(clone, parent.nextSibling);
206             $("a", clone).attr("style", "visibility: visible");
207             $("input", clone).attr("value", "");
208
209             var theid = $("span", clone).attr("id") || "";
210             var theid = $("span", clone).attr("id") || "";
211             var parts = theid.match(/^pattrodue-getready-(.*)$/);
212             if (parts && parts.length > 1){
213                 var appendid = "-" + Math.floor(Math.random()*1000+1);
214                 $("span", clone).attr("id",theid+appendid);
215
216                 theid = $("input", clone).attr("id");
217                 $("input", clone).attr("id",theid+appendid);
218
219                 theid = $("div[id]", clone).attr("id");
220                 $("div[id]", clone).attr("id",theid+appendid);
221
222                 var attrcode = $("script", clone).attr("x-code");
223                 var newsuffix = parts[1] + appendid;
224                 create_auto_completion_responder(newsuffix,attrcode);
225             }
226         }
227
228
229         function delete_parent(node) {
230             var parent = node.parentNode;
231             parent.parentNode.removeChild(parent);
232         }
233
234         function create_auto_completion_responder(uniqueid,attrcode) {
235             $("#pattrodue-getready-" + uniqueid).ready(function(){
236                 $( "#pattrodue-input-" + uniqueid ).autocomplete({
237                     source: "/cgi-bin/koha/circ/ypattrodue-attr-search-authvalue.pl/"+attrcode,
238                     select: function( event, ui ) {
239                         $( "#pattrodue-input-"+uniqueid ).val( ui.item.description );
240                         return false;
241                     }
242                 })
243                 .data( "ui-autocomplete" )._renderItem = function( ul, item ) {
244                     return $( "<li></li>" )
245                     .data( "ui-autocomplete-item", item )
246                     .append( "<a>" + item.description + " (" + item.authorised_value + ")</a>" )
247                     .appendTo( ul )
248                     .css("font-size","90%").css("width","13em");
249                 };
250             });
251         }
252
253         $(document).ready(function(){
254             $("#overduest").dataTable($.extend(true, {}, dataTablesDefaults, {
255                 "sPaginationType": "four_button",
256                 "aaSorting": [[0, 'asc']],
257                 "aoColumnDefs": [
258                     { "sType": "title-string", "aTargets": [ "title-string" ] }
259                 ]
260             }));
261         });
262   </script>
263 [% END %]
264
265 [% INCLUDE 'intranet-bottom.inc' %]