Bug 19916: Add keyword and standard ID fields to acq external search
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / z3950_search.tt
1 [% SET footerjs = 1 %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Acquisitions &rsaquo; [% IF ( opsearch ) %]Order from external source[% ELSE %]Order from external source &rsaquo; Search results[% END %]</title>
4 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables_[% KOHA_VERSION %].css" />
5 [% INCLUDE 'doc-head-close.inc' %]
6 <style type="text/css">
7 .linktools { background-color:#FFF;border-top:1px solid #DDD; border-left: 1px solid #DDD; border-right: 1px solid #666; border-bottom:1px solid #666;display: none; white-space: nowrap;}
8 .linktools a { font-size : 85%; text-decoration:none; padding:.3em;;background-color:#FFF; display:block;float:left;border-right:1px solid #DDD;}
9 .linktools a:hover { background-color:#EEE;color:#CC3300;border-right:1px solid #CCC;}
10 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : transparent !important; } #dataPreview { width : 80%; } @media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } }
11 </style>
12 </head>
13
14 <body id="acq_z3950_search" class="acq">
15 [% INCLUDE 'header.inc' %]
16 [% INCLUDE 'acquisitions-search.inc' %]
17
18 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% name %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | uri %]">Basket [% basketno | html %]</a> &rsaquo; [% IF ( opsearch ) %]Order from external source[% ELSE %]<a href="/cgi-bin/koha/acqui/z3950_search.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">Order from external source</a> &rsaquo; Search results[% END %]</div>
19
20 <div class="main container-fluid">
21     <form method="post" action="z3950_search.pl" name="f" class="checkboxed">
22     <div class="row">
23       [% IF ( opsearch ) %]
24     <div class="col-sm-6">
25     <h2>Order from external source</h2>
26     <input type="hidden" name="op" id="op" value="do_search" />
27             <fieldset class="rows">
28          <ol>
29              <li><label for="searchtitle">Title: </label> <input type="text" id="searchtitle"  name="title" value="[% title |html %]" class="focus" /></li>
30              <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn | html %]" /></li>
31              <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
32              <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li>
33              <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
34              <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
35              <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
36              <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
37              <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
38              <li><label for="stdid">Standard ID: </label> <input type="text" id="stdid" name="stdid" value="" /></li>
39              <li><label for="frameworkcode" >Select MARC framework:</label>
40              <select id="frameworkcode" name="frameworkcode" >
41              <option value="">Default</option>
42                  [% FOREACH framework IN frameworks %]
43                     <option value="[% framework.frameworkcode %]" >[% framework.frameworktext %]</option>
44                  [% END %]
45               </select>
46               </li>
47               <li><a id="resetZ3950Search" href="#"><i class="fa fa-trash"></i> Clear search form</a></li>
48          </ol>
49     </fieldset>
50     <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
51     <input type="hidden" name="basketno" value="[% basketno | html %]" />
52     <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
53             </div>
54 <div class="col-sm-6">
55 <h2>Search targets</h2>
56     <div id="z3950_search_targets_acq">
57         <span class="z3950checks"><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span></span>
58     [% FOREACH serverloo IN serverloop %]
59         <p>
60             [% IF ( serverloo.checked ) %]
61                 <input type="checkbox" name="id" id="z3950_[% serverloo.id %]" value="[% serverloo.id %]" checked="checked" />
62             [% ELSE %]
63                 <input type="checkbox" name="id" id="z3950_[% serverloo.id %]" value="[% serverloo.id %]" />
64             [% END %]
65             <label for="z3950_[% serverloo.id %]">[% serverloo.servername %] [[% serverloo.host %]]</label>
66
67         </p>
68     [% END %]
69     </div>
70   </div>
71 </div>
72
73 <div class="row">
74     <div class="col-md-12">
75     <fieldset class="action"><input type="submit"  class="submit" value="Search" /> <a class="cancel" href="/cgi-bin/koha/acqui/basket.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">Cancel</a></fieldset>
76 </div>
77 </form>
78 </div>
79
80
81 [% ELSE %]
82     <div class="col-md-12">
83     <h2>Search results</h2>
84
85     <p>You searched for:
86         [% IF ( title ) %]<em>Title: </em><span class=term>[% title | html %]</span> [% END %]
87         [% IF ( author ) %]<em>Author: </em><span class=term>[% author | html %]</span> [% END %]
88         [% IF ( isbn ) %]<em>ISBN: </em><span class=term>[% isbn | html %]</span> [% END %]
89         [% IF ( issn ) %]<em>ISSN: </em><span class=term>[% issn | html %]</span> [% END %]
90         [% IF ( lccall ) %]<em>LC call number: </em><span class=term>[% lccall | html %]</span> [% END %]
91         [% IF ( subject ) %]<em>Subject heading: </em><span class=term>[% subject | html %]</span> [% END %]
92         [% IF ( controlnumber ) %]<em>Control no: </em><span class=term>[% controlnumber | html %]</span> [% END %]
93         [% IF ( dewey ) %]<em>Dewey: </em><span class=term>[% dewey | html %]</span> [%END %]
94     </p>
95
96     [% IF ( breeding_loop ) %]
97     <table id="resultst">
98 <thead>    <tr>
99         <th>Server</th>
100         <th>Title</th>
101         <th>Author</th>
102         <th>ISBN</th>
103         <th>LCCN</th>
104         <th>Preview</th>
105                 <th>&nbsp;</th>
106     </tr></thead>
107     <tbody>[% FOREACH breeding_loo IN breeding_loop %]
108         [% IF ( breeding_loo.breedingid ) %]
109
110         <tr>
111             <td>[% breeding_loo.server %] <div class="linktools"><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewData">Preview MARC</a> <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% breeding_loo.breedingid %]" class="previewData">Preview card</a> <a href="/cgi-bin/koha/acqui/neworderempty.pl?frameworkcode=[% frameworkcode | uri  %]&amp;breedingid=[% breeding_loo.breedingid %]&amp;booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">Order</a> <a href="#" id="closemenu" title="Close this menu"> X </a></div></td>
112             <td>[% breeding_loo.title |html %]</td>
113             <td>[% breeding_loo.author %]</td>
114             <td>[% breeding_loo.isbn %]</td>
115             <td>[% breeding_loo.lccn %]</td>
116             <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" class="previewData">MARC</a> | <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% breeding_loo.breedingid %]" title="Card" class="previewData">Card</a></td>
117             <td><a href="/cgi-bin/koha/acqui/neworderempty.pl?frameworkcode=[% frameworkcode | uri %]&amp;breedingid=[% breeding_loo.breedingid %]&amp;booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">Order</a></td>
118
119         </tr>
120         [% END %]
121     [% END %]</tbody>
122 </table>
123
124
125     <div id="dataPreview" class="modal" tabindex="-1" role="dialog" aria-labelledby="dataPreviewLabel" aria-hidden="true">
126         <div class="modal-dialog">
127         <div class="modal-content">
128         <div class="modal-header">
129             <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
130             <h3 id="dataPreviewLabel">MARC preview</h3>
131         </div>
132         <div class="modal-body">
133             <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading </div>
134         </div>
135         <div class="modal-footer">
136             <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
137         </div>
138         </div>
139         </div>
140     </div>
141
142     <form method="post" action="z3950_search.pl" id="page_form" name="page_form" class="checkboxed">
143         <input type="hidden" name="op" id="op" value="do_search" />
144         <input type="hidden" name="current_page" id="current_page" value="[% current_page %]" />
145         <input type="hidden" id="searchtitle"  name="title" value="[% title |html %]" />
146         <input type="hidden" id="isbn" name="isbn" value="[% isbn | html %]" />
147         <input type="hidden" id="lccall" name="lccall" value="[% lccall | html %]" />
148         <input type="hidden" id="author" name="author" value="[% author | html %]" />
149         <input type="hidden" id="subject" name="subject" value="[% subject | html %]" />
150         <input type="hidden" id="dewey" name="dewey" value="[% dewey | html %]" />
151         <input type="hidden" name="frameworkcode" value="[% frameworkcode | html %]" />
152         <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
153         <input type="hidden" name="controlnumber" value="[% controlnumber | html %]" />
154         <input type="hidden" name="basketno" value="[% basketno | html %]" />
155         <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
156
157         [% FOREACH server IN servers %]
158         <input type="hidden" name="id" id="z3950_[% server.id %]" value="[% server.id %]" />
159         [% END %]
160
161         [% IF ( show_prevbutton ) %]
162             <input type="button" name="changepage_prev" value="Previous page" data-currentpage="[% current_page %]" />
163         [% END %]
164         Page [% current_page %] / [% total_pages %]
165         [% IF ( show_nextbutton ) %]
166             <input type="button" name="changepage_next" value="Next page" data-currentpage="[% current_page %]" />
167         [% END %]
168         <br />Go to page : <input id="goto_page" name="goto_page" value="[% current_page %]" size="4" /><input type="submit" name="changepage_goto" value="Go" />
169     </form>
170
171     [% ELSE %]
172         [% IF ( emptyserverlist ) %]
173             <div class="dialog alert">You didn't select any external target.</div>
174         [% ELSE %]
175             [% IF ( errconn ) %]
176                 <div class="dialog alert">
177                     <ul>
178                     [% FOREACH errcon IN errconn %]
179                         <li>Connection failed to [% errcon.server %]</li>
180                     [% END %]
181                     </ul>
182                 </div>
183             [% END %]
184         [% END %]
185         <div class="dialog message">Nothing found. <a href="javascript: history.back()">Try another search</a>.</div>
186     [% END %]
187 </div>
188
189 [% END %]
190
191 [% IF ( numberpending ) %]<h3 align="center">Still [% numberpending %] servers to search</h3>[% END %]
192
193 [% MACRO jsinclude BLOCK %]
194     <script type="text/javascript" src="[% interface %]/[% theme %]/js/acquisitions-menu_[% KOHA_VERSION %].js"></script>
195     [% INCLUDE 'datatables.inc' %]
196     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min_[% KOHA_VERSION %].js"></script>
197     <script type="text/javascript">
198         $(document).ready(function(){
199             var resultst = $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
200                 "aoColumnDefs": [
201                     { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
202                     { "aTargets": [ 1 ], "sType": "nsb-nse" },
203                 ],
204                 "aaSorting": [[ 1, "asc" ]],
205                 "bPaginate": false
206             }));
207             /* Inline edit/delete links */
208             $("td").click(function(event){
209                 var $tgt = $(event.target);
210                 var row = $(this).parent();
211                 $(".linktools").hide();
212                 $("tr").removeClass("selected");
213                 row.addClass("selected");
214                 if($tgt.is("a")||$tgt.is(":nth-child(6)")||$tgt.is(":nth-child(7)")){
215                     //Don't show inline links for cells containing links of their own.
216                 } else {
217                     var position = $(this).offset();
218                     var top = position.top+5;
219                     var left = position.left+5;
220                     $(".linktools",row).show().css("position","absolute").css("top",top).css("left",left);
221                 }
222             });
223         });
224     </script>
225     [% INCLUDE 'z3950_search.inc' %]
226     <script type="text/javascript" src="[% interface %]/[% theme %]/js/z3950_search_[% KOHA_VERSION %].js"></script>
227 [% END %]
228
229 [% INCLUDE 'intranet-bottom.inc' %]