Koha/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/cancelorder.tt
Julian Maurice cb866e3b1a Bug 7162: Remove "(Y)" and "(N)" from buttons text
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
2014-10-30 00:44:18 -03:00

62 lines
2.4 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Acquisition &rsaquo; Cancel order</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body>
[% INCLUDE 'header.inc' %]
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisition</a> &rsaquo; Cancel order</div>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
[% 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>
<textarea name="reason" placeholder="Reason of cancellation"></textarea>
</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="[% referrer %]" name="referrer" />
[% IF (del_biblio) %]
<input type="hidden" value="1" name="del_biblio" />
[% END %]
<input type="submit" class="approve" value="Yes, cancel" accesskey="y" />
<input type="submit" class="deny" value="No, don't cancel" accesskey="n" onclick="window.location='[% referrer %]';return false;" />
</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>
</div>
[% INCLUDE 'intranet-bottom.inc' %]