Lines 396-402
Link Here
|
396 |
<!-- generic_confirm ends here --> |
396 |
<!-- generic_confirm ends here --> |
397 |
|
397 |
|
398 |
[% ELSIF query_type == 'edit_action' %] |
398 |
[% ELSIF query_type == 'edit_action' %] |
399 |
<form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl"> |
399 |
<form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl" id="ill_edit_action_form"> |
400 |
<fieldset class="rows"> |
400 |
<fieldset class="rows"> |
401 |
<legend>Request details</legend> |
401 |
<legend>Request details</legend> |
402 |
<ol> |
402 |
<ol> |
Lines 469-475
Link Here
|
469 |
</li> |
469 |
</li> |
470 |
<li class="price_paid"> |
470 |
<li class="price_paid"> |
471 |
<label class="price_paid">Price paid:</label> |
471 |
<label class="price_paid">Price paid:</label> |
472 |
<input name="price_paid" id="price_paid" type="text" value="[% request.price_paid | html %]"> |
472 |
<input name="price_paid" id="price_paid" type="text" value="[% request.price_paid | $Price on_editing => 1 %]"> |
473 |
</li> |
473 |
</li> |
474 |
<li class="req_id"> |
474 |
<li class="req_id"> |
475 |
<label class="req_id">Request ID:</label> |
475 |
<label class="req_id">Request ID:</label> |
Lines 945-950
Link Here
|
945 |
$('.ill_checkout_due_date').show(); |
945 |
$('.ill_checkout_due_date').show(); |
946 |
} |
946 |
} |
947 |
}); |
947 |
}); |
|
|
948 |
$("#ill_edit_action_form").validate({ |
949 |
rules: { |
950 |
price_paid: { |
951 |
number: true |
952 |
} |
953 |
}, |
954 |
}); |
948 |
</script> |
955 |
</script> |
949 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
956 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
950 |
[% INCLUDE 'ill-batch-table-strings.inc' %] |
957 |
[% INCLUDE 'ill-batch-table-strings.inc' %] |
951 |
- |
|
|