|
Lines 247-252
function confirm_deletion() {
Link Here
|
| 247 |
</div> |
247 |
</div> |
| 248 |
<div class="yui-u"> |
248 |
<div class="yui-u"> |
| 249 |
<div id="cataloguing_additem_newitem"> |
249 |
<div id="cataloguing_additem_newitem"> |
|
|
250 |
|
| 251 |
[% IF (LostItemLevelHold) %] |
| 252 |
<div class="dialog alert"> |
| 253 |
<h4>This item has an item-level hold on it:</h4> |
| 254 |
<form method="get" action="/cgi-bin/koha/cataloguing/additem.pl"> |
| 255 |
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]" /> |
| 256 |
<button class="approve" type="submit"><i class="fa fa-fw fa-check"></i> Retain hold</button> |
| 257 |
</form> |
| 258 |
<form method="post" action="/cgi-bin/koha/cataloguing/additem.pl"> |
| 259 |
<input type="hidden" name="itemnumber" value="[% lostitemnumber | html %]" /> |
| 260 |
<input type="hidden" name="op" value="additem" /> |
| 261 |
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]" /> |
| 262 |
<input type="hidden" name="RetainHold" value="" /> |
| 263 |
<input type="hidden" name="CancelHold" value="CancelHold" /> |
| 264 |
<button class="deny" type="submit"><i class="fa fa-fw fa-remove"></i> Cancel hold</button> |
| 265 |
</form> |
| 266 |
</div> |
| 267 |
[% END %] |
| 268 |
|
| 250 |
<form id="f" method="post" action="/cgi-bin/koha/cataloguing/additem.pl" name="f"> |
269 |
<form id="f" method="post" action="/cgi-bin/koha/cataloguing/additem.pl" name="f"> |
| 251 |
<input type="hidden" name="op" value="[% op | html %]" /> |
270 |
<input type="hidden" name="op" value="[% op | html %]" /> |
| 252 |
[% IF (popup) %] |
271 |
[% IF (popup) %] |
|
Lines 259-277
function confirm_deletion() {
Link Here
|
| 259 |
<h2 id="edititem">Edit Item #[% itemnumber | html %][% IF ( barcode ) %] / Barcode [% barcode | html %][% END %]</h2> |
278 |
<h2 id="edititem">Edit Item #[% itemnumber | html %][% IF ( barcode ) %] / Barcode [% barcode | html %][% END %]</h2> |
| 260 |
[% END %] |
279 |
[% END %] |
| 261 |
|
280 |
|
| 262 |
|
|
|
| 263 |
[% IF (LostItemLevelHold) %] |
| 264 |
<div class="alert alert-warning"> |
| 265 |
<form id="DeallocateLostItemLevelHold" method="post" action="/cgi-bin/koha/cataloguing/additem.pl" name="DeallocateLostItemLevelHold"> |
| 266 |
<input type="hidden" id="itemnumber" name="itemnumber" value="[% lostitemnumber | html %]"/> |
| 267 |
This item has an item-level hold on it: |
| 268 |
<input type="submit" name="RetainHold" value="Retain Hold"/> |
| 269 |
<input type="submit" name="CancelHold" value="Cancel hold"/> |
| 270 |
</form> |
| 271 |
</div> |
| 272 |
[% END %] |
| 273 |
|
| 274 |
|
| 275 |
<fieldset class="rows"> |
281 |
<fieldset class="rows"> |
| 276 |
<ol> |
282 |
<ol> |
| 277 |
[% FOREACH ite IN item %] |
283 |
[% FOREACH ite IN item %] |
| 278 |
- |
|
|