|
Lines 385-391
Link Here
|
| 385 |
<!-- generic_confirm ends here --> |
385 |
<!-- generic_confirm ends here --> |
| 386 |
|
386 |
|
| 387 |
[% ELSIF query_type == 'edit_action' %] |
387 |
[% ELSIF query_type == 'edit_action' %] |
| 388 |
<form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl"> |
388 |
<form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl" id="ill_edit_action_form"> |
| 389 |
<fieldset class="rows"> |
389 |
<fieldset class="rows"> |
| 390 |
<legend>Request details</legend> |
390 |
<legend>Request details</legend> |
| 391 |
<ol> |
391 |
<ol> |
|
Lines 441-447
Link Here
|
| 441 |
</li> |
441 |
</li> |
| 442 |
<li class="price_paid"> |
442 |
<li class="price_paid"> |
| 443 |
<label class="price_paid">Price paid:</label> |
443 |
<label class="price_paid">Price paid:</label> |
| 444 |
<input name="price_paid" id="price_paid" type="text" value="[% request.price_paid | html %]"> |
444 |
<input name="price_paid" id="price_paid" type="text" value="[% request.price_paid | $Price on_editing => 1 %]"> |
| 445 |
</li> |
445 |
</li> |
| 446 |
<li class="req_id"> |
446 |
<li class="req_id"> |
| 447 |
<label class="req_id">Request ID:</label> |
447 |
<label class="req_id">Request ID:</label> |
|
Lines 849-854
Link Here
|
| 849 |
$('.ill_checkout_due_date').show(); |
849 |
$('.ill_checkout_due_date').show(); |
| 850 |
} |
850 |
} |
| 851 |
}); |
851 |
}); |
|
|
852 |
$("#ill_edit_action_form").validate({ |
| 853 |
rules: { |
| 854 |
price_paid: { |
| 855 |
number: true |
| 856 |
} |
| 857 |
}, |
| 858 |
}); |
| 852 |
</script> |
859 |
</script> |
| 853 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
860 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
| 854 |
[% Asset.js("js/ill-list-table.js") | $raw %] |
861 |
[% Asset.js("js/ill-list-table.js") | $raw %] |
| 855 |
- |
|
|