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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-2 / +13 lines)
Lines 374-379 function show_page_2() { Link Here
374
374
375
375
376
$(document).ready(function() {
376
$(document).ready(function() {
377
    $("#aqbooksellerid").on('keypress', function(e) {
378
        if (e.keyCode == 13) {
379
            e.preventDefault();
380
            FindAcqui();
381
        }
382
    });
383
    $("#biblionumber").on('keypress', function(e) {
384
        if (e.keyCode == 13) {
385
            e.preventDefault();
386
            Plugin();
387
        }
388
    });
377
    $("select#frequency").change(function(){
389
    $("select#frequency").change(function(){
378
        patternneedtobetested = 1;
390
        patternneedtobetested = 1;
379
        $("input[name='enddate']").val('');
391
        $("input[name='enddate']").val('');
Lines 479-485 $(document).ready(function() { Link Here
479
                                [% END %]
491
                                [% END %]
480
                                <li>
492
                                <li>
481
                                    <label for="aqbooksellerid">Vendor: </label>
493
                                    <label for="aqbooksellerid">Vendor: </label>
482
                                    <input type="text" name="aqbooksellerid" id="aqbooksellerid" value="[% aqbooksellerid %]" size="8" /> (<input type="text" name="aqbooksellername" value="[% aqbooksellername %]" disabled="disabled" readonly="readonly" />) <a href="#" onclick="FindAcqui(f)">Search for a vendor</a>
494
                                    <input type="text" name="aqbooksellerid" id="aqbooksellerid" value="[% aqbooksellerid %]" size="8" /> (<input type="text" name="aqbooksellername" id="aqbooksellername" value="[% aqbooksellername %]" disabled="disabled" readonly="readonly" />) <a href="#" onclick="FindAcqui(f)">Search for a vendor</a>
483
                                </li>
495
                                </li>
484
                                <li>
496
                                <li>
485
                                    <label for="biblionumber" class="required" title="Subscriptions must be associated with a bibliographic record">Record:</label>
497
                                    <label for="biblionumber" class="required" title="Subscriptions must be associated with a bibliographic record">Record:</label>
486
- 

Return to bug 9139