Adding bookfund search to aqbudget.tmpl
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / serials-search.inc
1
2 <h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl"><!-- TMPL_VAR NAME="LibraryName" --></a></h1><!-- Begin Serials Resident Search Box -->
3 <!-- TMPL_IF NAME="CAN_user_circulate" --><!-- TMPL_IF NAME="CircAutocompl" --><script type="text/javascript">
4 //<![CDATA[
5 YAHOO.util.Event.onContentReady("header_search", function() {
6     new function() {
7         // Define a custom formatter function
8         this.fnCustomFormatter = function(oResultItem, sQuery) {
9             var name        = oResultItem[0];
10             var cardnumber  = oResultItem[1];
11             var address     = oResultItem[2];
12             var city        = oResultItem[3];
13             var zip         = oResultItem[4];
14             var aMarkup = [
15                 "<div class=\"sample-result\">",
16                 name,
17                 " (",
18                 cardnumber,
19                 ")<small> -- ",
20                 address,
21                 ", ",
22                 city,
23                 "</small>",
24                 "</div>"];
25             return (aMarkup.join(""));
26         };
27
28         // Instantiate one XHR DataSource and define schema as an array:
29         //     ["Record Delimiter",
30         //     "Field Delimiter"]
31         this.oACDS = new YAHOO.widget.DS_XHR("/cgi-bin/koha/circ/ysearch.pl", ["\n", "\t"]);
32         this.oACDS.responseType = YAHOO.widget.DS_XHR.TYPE_FLAT;
33         this.oACDS.maxCacheEntries = 60;
34         this.oACDS.queryMatchSubset = true;
35     
36         // Instantiate first AutoComplete
37         var myInput = document.getElementById('findborrower');
38         var myContainer = document.getElementById('yborrowercontainer');
39         this.oAutoComp = new YAHOO.widget.AutoComplete(myInput,myContainer,this.oACDS);
40         //this.oAutoComp.delimChar = ";";
41         //this.oAutoComp.queryDelay = 1;
42         this.oAutoComp.formatResult = this.fnCustomFormatter;
43 }
44 });    
45 //]]>
46 </script><!-- /TMPL_IF --><!-- /TMPL_IF -->
47 <div id="header_search">
48         <div id="subscription_search" class="residentsearch">
49         <p class="tip">Search Subscriptions:</p>
50  <form action="/cgi-bin/koha/serials/serials-home.pl" method="get"><!-- TMPL_IF NAME="routing" --><input type="hidden" name="routing" value="<!-- TMPL_VAR NAME="routing" -->" /><!-- /TMPL_IF --><input type="hidden" name="searched" value="1" /> <label for="ISSN_filter">ISSN:</label> <input type="text" size="10" maxlength="11" name="ISSN_filter" id="ISSN_filter" value="<!-- TMPL_VAR name="ISSN_filter" -->" /> <label for="title_filter">Title:</label> <input type="text" size="20" maxlength="40" name="title_filter" id="title_filter" value="<!-- TMPL_VAR name="title_filter" -->" /><input type="submit" value="Search" class="submit" />
51 </form>
52         </div>
53 <!-- TMPL_IF NAME="CAN_user_circulate" -->
54 <div id="circ_search" class="residentsearch" style="display:none;">
55         <p class="tip">Enter patron card number or partial name:</p>
56     <form action="/cgi-bin/koha/circ/circulation.pl" method="post">
57     <!-- TMPL_IF NAME="CircAutocompl" -->
58     <div class="autocomplete">
59             <div id="borrowerautocomplete" class="autocomplete">
60                 <input autocomplete="off" id="findborrower" name="findborrower" class="focus" type="text" />
61                 <div id="yborrowercontainer"></div>
62                 <input id="ysearchsubmit" type="submit" class="submit" value="Submit" />
63                 <input name="branch" value="<!-- TMPL_VAR name="branch" -->" type="hidden" />
64                 <input name="printer" value="" type="hidden" />
65             </div>
66         </div>
67         <!-- TMPL_ELSE -->
68             <input id="findborrower" name="findborrower" size="40" class="focus" type="text" />
69             <input name="branch" value="<!-- TMPL_VAR name="branch" -->" type="hidden" />
70             <input name="printer" value="" type="hidden" />
71             <input value="Submit" class="submit" type="submit" />
72         <!-- /TMPL_IF -->
73     </form>
74 </div>
75         <!-- /TMPL_IF -->
76         <!-- TMPL_IF NAME="CAN_user_catalogue" -->
77         <div id="catalog_search" class="residentsearch" style="display:none;">
78         <p class="tip">Enter search keywords:</p>
79                 <form action="/cgi-bin/koha/catalogue/search.pl"  method="get" id="cat-search-block">
80                          <input type="text" name="q" id="search-form" size="40" value="" title="Enter the terms you wish to search for." class="form-text" />
81                                 <input type="submit" value="Submit"  class="submit" />
82                 </form>
83         </div>
84         <!-- /TMPL_IF -->
85                         <ul>
86                         <li><a href="/cgi-bin/koha/serials/serials-home.pl#subscription_search">Search Subscriptions</a></li>
87                         <!-- TMPL_IF NAME="CAN_user_circulate" --><li><a href="/cgi-bin/koha/circ/circulation.pl#circ_search">Check Out</a></li><!-- /TMPL_IF -->
88                         <!-- TMPL_IF NAME="CAN_user_catalogue" --><li><a href="/cgi-bin/koha/catalogue/search.pl#catalog_search">Search the Catalog</a></li><!-- /TMPL_IF -->
89                         </ul>   
90 </div>
91 <!-- End Serials Resident Search Box -->