Owen Leonard
4f252d611d
This patch modifies several acquisitions templates to use the Bootstrap grid instead of YUI. This patch also removes obsolete "text/javascript" attributes from <script> tags in the modified templates. To test, apply the patch and view the following pages, confirming that they look correct at various browser widths: - Acquisitions -> Vendor -> Add to basket -> From an existing record -> Search results. - Order - Acquisitions -> Vendor -> Add to basket -> From a subscription - Acquisitions -> Vendor -> Add to basket -> From a suggestion - Acquisitions -> Vendor -> Add to basket -> From an external source - Search for an title which already exists in your catalog - Select a search result which has an ISBN matching the title in your catalog. - Order. The duplicate warning page is the one modified. - Acquisitions home page -> Click an "Ordered" value for a fund. Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
76 lines
3.3 KiB
Text
76 lines
3.3 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Acquisitions › Basket [% basketno | html %] › Duplicate warning</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="acq_neworderempty_duplicate" class="acq">
|
|
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'acquisitions-search.inc' %]
|
|
|
|
<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/basket.pl?basketno=[% basketno | html %]">Basket [% basketno | html %]</a> › Duplicate warning</div>
|
|
|
|
<div class="main container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-push-2">
|
|
<main>
|
|
|
|
<div class="dialog alert">
|
|
<h4>Duplicate warning</h4>
|
|
<p>You selected a record from an external source that matches an existing record in your catalog: [% IF ( BiblioDefaultViewmarc ) %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% biblionumber |url %]">
|
|
[% ELSIF ( BiblioDefaultViewlabeled_marc ) %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=[% biblionumber |url %]">
|
|
[% ELSIF ( BiblioDefaultViewisbd ) %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=[% biblionumber |url %]">
|
|
[% ELSE %]<a class="popup" target="_blank" title="Open in new window" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber |url %]">[% END %][% duplicatetitle | html %]</a></p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<div style="border: 1px solid #DDD; padding:1em;">
|
|
<form action="/cgi-bin/koha/acqui/neworderempty.pl">
|
|
<h4>Use existing record</h4>
|
|
<p>Do not create a duplicate record. Add an order from the existing record in your catalog.</p>
|
|
<input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
|
|
<input type="hidden" name="basketno" value="[% basketno | html %]" />
|
|
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
|
|
<input type="submit" value="Use Existing" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-4">
|
|
<div style="border: 1px solid #DDD; padding:1em;">
|
|
<form action="/cgi-bin/koha/acqui/basket.pl">
|
|
<h4>Cancel and return to order</h4>
|
|
<p>Return to the basket without making a new order.</p>
|
|
<input type="hidden" name="basketno" value="[% basketno | html %]" />
|
|
<input type="submit" value="Cancel" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-4">
|
|
<div style="border: 1px solid #DDD; padding:1em;">
|
|
<form action="/cgi-bin/koha/acqui/neworderempty.pl">
|
|
<h4>Create new record</h4>
|
|
<p>Create a new record by importing the external (duplicate) record.</p>
|
|
<input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
|
|
<input type="hidden" name="basketno" value="[% basketno | html %]" />
|
|
<input type="hidden" name="breedingid" value="[% breedingid | html %]" />
|
|
<input type="hidden" name="use_external_source" value="1" />
|
|
<input type="submit" value="Create New" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
</div> <!-- /.col-sm-10.col-sm-push-2 -->
|
|
|
|
<div class="col-sm-2 col-sm-pull-10">
|
|
<aside>
|
|
[% INCLUDE 'acquisitions-menu.inc' %]
|
|
</aside>
|
|
</div> <!-- /.col-sm-2.col-sm-pull-10 -->
|
|
</div> <!-- /.row -->
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|