4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>Koha › Acquisitions › Search existing records</title>
6 [% INCLUDE 'doc-head-close.inc' %]
9 <body id="acq_neworderbiblio" class="acq">
10 [% INCLUDE 'header.inc' %]
11 [% INCLUDE 'acquisitions-search.inc' %]
13 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> › <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | html %]">[% name | html %]</a> › <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno | html %]">Basket [% basketno | html %]</a> › Search existing records</div>
15 [% INCLUDE 'blocking_errors.inc' %]
17 <div class="main container-fluid">
19 <div class="col-sm-10 col-sm-push-2">
22 <h1>Search existing records</h1>
26 <b>[% total | html %] results found </b>
27 <div class="pages">[% pagination_bar | $raw %]</div>
29 <h3> No results found</h3>
31 No results match your search for <span style="font-weight: bold;">“[% query | html %]”</span> in [% LibraryName | html %]
35 [% IF ( query_error ) %]
36 <div class="dialog alert"><p><strong>Error:</strong> [% query_error | html %]</p></div>
40 <div class="searchresults">
51 [% FOREACH biblio IN resultsloop %]
54 <p><span class="title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]">[% INCLUDE 'biblio-title.inc' %]</a></span>
55 [% IF ( biblio.author ) %] by <span class="author">[% biblio.author | html %]</span>,[% END %]</p>
56 <p>[% IF ( biblio.isbn ) %] [% biblio.isbn | html %][% END %]
57 [% IF ( biblio.pages ) %] - [% biblio.pages | html %][% END %]
58 [% IF ( biblio.notes ) %] : [% biblio.notes | html %][% END %]
59 [% IF ( biblio.size ) %] ; [% biblio.size | html %][% END %]
63 [% biblio.publishercode | html %]
64 [% IF ( biblio.place ) %] ; [% biblio.place | html %][% END %]
67 [% biblio.copyrightdate | html %]
70 <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblio.biblionumber | uri %]&viewas=html" class="previewMARC btn btn-default btn-xs"><i class="fa fa-eye"></i> View MARC</a>
71 <a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid | uri %]&basketno=[% basketno | uri %]&biblionumber=[% biblio.biblionumber | uri %]" title="Order this one" class="btn btn-default btn-xs"><i class="fa fa-plus"></i> Order</a>
77 <div id="marcPreview" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="marcPreviewLabel" aria-hidden="true">
78 <div class="modal-dialog modal-wide">
79 <div class="modal-content">
80 <div class="modal-header">
81 <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
82 <h3 id="marcPreviewLabel">MARC preview</h3>
84 <div class="modal-body">
85 <div id="loading"> <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading </div>
87 <div class="modal-footer">
88 <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
96 [% INCLUDE 'acquisitions-add-to-basket.inc' %]
99 </div> <!-- /.col-sm-10.col-sm-push-2 -->
101 <div class="col-sm-2 col-sm-pull-10">
103 [% INCLUDE 'acquisitions-menu.inc' %]
105 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
106 </div> <!-- /.row -->
108 [% MACRO jsinclude BLOCK %]
109 [% Asset.js("js/acquisitions-menu.js") | $raw %]
110 [% INCLUDE 'datatables.inc' %]
112 $(document).ready(function() {
113 var resultst = $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
120 $(".previewMARC").on("click", function(e){
122 var ltitle = $(this).text();
123 var page = $(this).attr("href");
124 $("#marcPreviewLabel").text(ltitle);
125 $("#marcPreview .modal-body").load(page + " table");
126 $('#marcPreview').modal({show:true});
128 $("#marcPreview").on("hidden.bs.modal", function(){
129 $("#marcPreviewLabel").html("");
130 $("#marcPreview .modal-body").html("<div id=\"loading\"><img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> "+_("Loading")+"</div>");
136 [% INCLUDE 'intranet-bottom.inc' %]