View | Details | Raw Unified | Return to bug 35106
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +13 lines)
Lines 403-409 Link Here
403
                <!-- generic_confirm ends here -->
403
                <!-- generic_confirm ends here -->
404
404
405
                [% ELSIF op == 'edit_action' %]
405
                [% ELSIF op == 'edit_action' %]
406
                    <form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl">
406
                    <form method="POST" id="ill_edit_action_form" action="/cgi-bin/koha/ill/ill-requests.pl">
407
                        [% INCLUDE 'csrf-token.inc' %]
407
                        [% INCLUDE 'csrf-token.inc' %]
408
                        <fieldset class="rows">
408
                        <fieldset class="rows">
409
                            <legend>Request details</legend>
409
                            <legend>Request details</legend>
Lines 967-972 Link Here
967
                $('.ill_checkout_due_date').show();
967
                $('.ill_checkout_due_date').show();
968
            }
968
            }
969
        });
969
        });
970
971
        if ($("#ill_edit_action_form #borrowernumber").length) {
972
            patron_autocomplete(
973
                $('#ill_edit_action_form #borrowernumber'), {
974
                    'on-select-callback': function(event, ui) {
975
                        $("#ill_edit_action_form #borrowernumber").val(ui.item.patron_id);
976
                        return false;
977
                    }
978
                }
979
            );
980
        }
981
970
    </script>
982
    </script>
971
    [% INCLUDE 'ill-list-table-strings.inc' %]
983
    [% INCLUDE 'ill-list-table-strings.inc' %]
972
    [% INCLUDE 'ill-batch-table-strings.inc' %]
984
    [% INCLUDE 'ill-batch-table-strings.inc' %]
973
- 

Return to bug 35106