Owen Leonard
fad518ed7d
This patch updates several acquisitions module templates to use the Bootstrap grid. - acqui/z3950_search.tt - Acquisitions -> Vendor -> View basket -> Add to basket -> From an external source. The Z39.50 search form should look correct. - Search for a title. The search results page should look correct. - acqui/addorder.tt - Acquisitions -> Vendor -> View basket -> Add to basket. Add an order to the basket which costs more than is available in the fund you select. The error/confirmation screen should look correct. - acqui\modordernotes.tt - Acquisitions -> Vendor -> View basket -> Add internal or vendor note. The note add form should look correct. - acqui/cancelorder.tt - Acquisitions -> Vendor -> View basket -> Cancel order (from an open basket which has existing orders). The confirmation screen should look correct. - acqui\basketheader.tt - Acquisitions -> Vendor -> New basket. The new basket edit form should look correct. Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
68 lines
2.9 KiB
Text
68 lines
2.9 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Acquisition › Cancel order</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
|
|
<body id="acq_cancelorder" class="acq">
|
|
[% INCLUDE 'header.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/supplier.pl?booksellerid=[% basket.bookseller.id %]">[% basket.bookseller.name | html %]</a> ›
|
|
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno %]">Basket [% basket.basketname | html %] ([% basket.basketno %]) for [% basket.bookseller.name | html %]</a> ›
|
|
Cancel order
|
|
</div>
|
|
|
|
<div class="main container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
|
|
|
|
[% UNLESS ( confirmcancel ) %]
|
|
<form method="post" action="">
|
|
<div class="dialog alert">
|
|
<h3>Are you sure you want to cancel this order ([% ordernumber %])</h3>
|
|
<p>
|
|
[% IF (del_biblio) %]
|
|
Bibliographic record will be deleted too.
|
|
[% ELSE %]
|
|
Bibliographic record will not be deleted.
|
|
[% END %]
|
|
</p>
|
|
<p>
|
|
[% PROCESS 'av-build-dropbox.inc' name="reason", category="ORDER_CANCELLATION_REASON" default="0" %]
|
|
</p>
|
|
<input type="hidden" name="action" value="confirmcancel" />
|
|
<input type="hidden" value="[% ordernumber %]" name="ordernumber" />
|
|
<input type="hidden" value="[% biblionumber %]" name="biblionumber" />
|
|
<input type="hidden" value="[% basket.basketno %]" name="basketno" />
|
|
<input type="hidden" value="[% referrer %]" name="referrer" />
|
|
[% IF (del_biblio) %]
|
|
<input type="hidden" value="1" name="del_biblio" />
|
|
[% END %]
|
|
<button type="submit" class="approve" accesskey="y"><i class="fa fa-fw fa-check"></i> Yes, cancel (Y)</button>
|
|
<button class="deny" accesskey="n" onclick="window.location='[% referrer %]';return false;"><i class="fa fa-fw fa-remove"></i> No, don't cancel (N)</button>
|
|
</div>
|
|
</form>
|
|
[% ELSE %]
|
|
[% IF ( success_cancelorder ) %]
|
|
<div class="dialog message">
|
|
The order has been successfully cancelled
|
|
[% ELSE %]
|
|
<div class="dialog alert">
|
|
An error has occurred.
|
|
[% IF ( error_delitem ) %]
|
|
<p>The order has been cancelled, although one or more items could not have been deleted.</p>
|
|
[% END %]
|
|
[% IF ( error_delbiblio ) %]
|
|
<p>The order has been cancelled, although the record has not been deleted.</p>
|
|
[% END %]
|
|
[% END %]
|
|
<p><a href="[% referrer %]">OK</a></p>
|
|
</div>
|
|
[% END %]
|
|
|
|
</div>
|
|
</div>
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|