|
Lines 299-305
$(document).ready(function () {
Link Here
|
| 299 |
<input type="submit" class="approve" value="Confirm hold" /> |
299 |
<input type="submit" class="approve" value="Confirm hold" /> |
| 300 |
<input type="submit" value="Print slip and confirm" class="print" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber %]&biblionumber=[% itembiblionumber %]&op=slip'); this.form.submit();" /> |
300 |
<input type="submit" value="Print slip and confirm" class="print" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber %]&biblionumber=[% itembiblionumber %]&op=slip'); this.form.submit();" /> |
| 301 |
[% END %] |
301 |
[% END %] |
| 302 |
<input type="submit" class="deny" value="Ignore" onclick="$('.dialog:visible').hide('slow'); $('#barcode').focus(); return false;" /> |
302 |
<input type="submit" class="deny" value="Ignore" onclick="$('.dialog:visible').hide('slow'); $('#submit').removeAttr('disabled'); $('#barcode').removeAttr('disabled').focus(); return false;" /> |
| 303 |
[% FOREACH inputloo IN inputloop %] |
303 |
[% FOREACH inputloo IN inputloop %] |
| 304 |
<input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" /> |
304 |
<input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" /> |
| 305 |
<input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" /> |
305 |
<input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" /> |
|
Lines 384-397
$(document).ready(function () {
Link Here
|
| 384 |
<fieldset> |
384 |
<fieldset> |
| 385 |
<legend>Check In</legend> |
385 |
<legend>Check In</legend> |
| 386 |
<label for="barcode">Enter item barcode: </label> |
386 |
<label for="barcode">Enter item barcode: </label> |
| 387 |
[% IF ( exemptfine ) %] |
387 |
[% IF found %] |
| 388 |
<input name="barcode" id="barcode" size="14" class="focus alert"/> |
388 |
<input name="barcode" id="barcode" size="14" disabled="disabled"/> |
|
|
389 |
[% ELSIF ( exemptfine ) %] |
| 390 |
<input name="barcode" id="barcode" size="14" class="focus alert"/> |
| 389 |
[% ELSIF ( dropboxmode ) %] |
391 |
[% ELSIF ( dropboxmode ) %] |
| 390 |
<input name="barcode" id="barcode" size="14" class="focus alert"/> |
392 |
<input name="barcode" id="barcode" size="14" class="focus alert"/> |
| 391 |
[% ELSE %] |
393 |
[% ELSE %] |
| 392 |
<input name="barcode" id="barcode" size="14" class="focus"/> |
394 |
<input name="barcode" id="barcode" size="14" class="focus"/> |
| 393 |
[% END %] |
395 |
[% END %] |
| 394 |
<input type="submit" class="submit" value="Submit" /> |
396 |
|
|
|
397 |
[% UNLESS found %] |
| 398 |
<input id="submit" type="submit" class="submit" value="Submit" /> |
| 399 |
[% ELSE %] |
| 400 |
<input id="submit" type="submit" class="submit" value="Submit" disabled="disabled"/> |
| 401 |
[% END %] |
| 402 |
|
| 395 |
[% FOREACH inputloo IN inputloop %] |
403 |
[% FOREACH inputloo IN inputloop %] |
| 396 |
<input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" /> |
404 |
<input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" /> |
| 397 |
<input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" /> |
405 |
<input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" /> |
| 398 |
- |
|
|