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 978-983 Link Here
978
                $('.ill_checkout_due_date').show();
978
                $('.ill_checkout_due_date').show();
979
            }
979
            }
980
        });
980
        });
981
982
        if ($("#ill_edit_action_form #borrowernumber").length) {
983
            patron_autocomplete(
984
                $('#ill_edit_action_form #borrowernumber'), {
985
                    'on-select-callback': function(event, ui) {
986
                        $("#ill_edit_action_form #borrowernumber").val(ui.item.patron_id);
987
                        return false;
988
                    }
989
                }
990
            );
991
        }
992
981
    </script>
993
    </script>
982
    [% INCLUDE 'ill-list-table-strings.inc' %]
994
    [% INCLUDE 'ill-list-table-strings.inc' %]
983
    [% INCLUDE 'ill-batch-table-strings.inc' %]
995
    [% INCLUDE 'ill-batch-table-strings.inc' %]
984
- 

Return to bug 35106