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" id="ill_edit_action_form" action="/cgi-bin/koha/ill/ill-requests.pl"> |
400 |
<fieldset class="rows"> |
400 |
<fieldset class="rows"> |
401 |
<legend>Request details</legend> |
401 |
<legend>Request details</legend> |
402 |
<ol> |
402 |
<ol> |
Lines 945-950
Link Here
|
945 |
$('.ill_checkout_due_date').show(); |
945 |
$('.ill_checkout_due_date').show(); |
946 |
} |
946 |
} |
947 |
}); |
947 |
}); |
|
|
948 |
|
949 |
patron_autocomplete( |
950 |
$('#ill_edit_action_form #borrowernumber'), |
951 |
{ |
952 |
'on-select-callback': function( event, ui ) { |
953 |
$("#ill_edit_action_form #borrowernumber").val( ui.item.patron_id ); |
954 |
return false; |
955 |
} |
956 |
} |
957 |
); |
958 |
|
948 |
</script> |
959 |
</script> |
949 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
960 |
[% INCLUDE 'ill-list-table-strings.inc' %] |
950 |
[% INCLUDE 'ill-batch-table-strings.inc' %] |
961 |
[% INCLUDE 'ill-batch-table-strings.inc' %] |
951 |
- |
|
|