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 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
        if ($("#ill_edit_action_form #borrowernumber").length) {
950
            patron_autocomplete(
951
                $('#ill_edit_action_form #borrowernumber'), {
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
        }
959
948
    </script>
960
    </script>
949
    [% INCLUDE 'ill-list-table-strings.inc' %]
961
    [% INCLUDE 'ill-list-table-strings.inc' %]
950
    [% INCLUDE 'ill-batch-table-strings.inc' %]
962
    [% INCLUDE 'ill-batch-table-strings.inc' %]
951
- 

Return to bug 35106