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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-2 / +3 lines)
Lines 14-19 fieldset.rows li.radio { width: 100%; } /* override staff-global.css */ Link Here
14
/* Prevents Bootstrap menus from being hidden inside modal */
14
/* Prevents Bootstrap menus from being hidden inside modal */
15
#mana_search_result .modal { overflow: visible; }
15
#mana_search_result .modal { overflow: visible; }
16
#mana_search_result .modal-body { overflow-y: visible; }
16
#mana_search_result .modal-body { overflow-y: visible; }
17
.inputnote { padding-left: 13rem; padding-top: 1rem; }
17
fieldset.rows table { clear: none; margin: 0; }
18
fieldset.rows table { clear: none; margin: 0; }
18
</style>
19
</style>
19
</head>
20
</head>
Lines 88-99 fieldset.rows table { clear: none; margin: 0; } Link Here
88
                                [% END %]
89
                                [% END %]
89
                                <li>
90
                                <li>
90
                                    <label for="aqbooksellerid">Vendor: </label>
91
                                    <label for="aqbooksellerid">Vendor: </label>
91
                                    <input type="text" name="aqbooksellerid" id="aqbooksellerid" value="[% aqbooksellerid | html %]" size="8" /> (<input type="text" name="aqbooksellername" id="aqbooksellername" value="[% aqbooksellername | html %]" disabled="disabled" readonly="readonly" />) <a href="#" id="vendor_search"><i class="fa fa-search"></i> Search for a vendor</a>
92
                                    <input type="text" name="aqbooksellerid" id="aqbooksellerid" value="[% aqbooksellerid | html %]" size="8" /><input type="text" name="aqbooksellername" id="aqbooksellername" value="[% aqbooksellername | html %]" disabled="disabled" readonly="readonly" /><a href="#" id="vendor_search"><i class="fa fa-search"></i> Search for a vendor</a>
92
                                </li>
93
                                </li>
93
                                <li>
94
                                <li>
94
                                    <label for="biblionumber" class="required">Record:</label>
95
                                    <label for="biblionumber" class="required">Record:</label>
95
                                    <input type="text" name="biblionumber" id="biblionumber" value="[% bibnum | html %]" size="8" />
96
                                    <input type="text" name="biblionumber" id="biblionumber" value="[% bibnum | html %]" size="8" />
96
                                    (<input type="text" name="title" value="[% bibliotitle | html %]" disabled="disabled" readonly="readonly" />) <span class="required" title="Subscriptions must be associated with a bibliographic record">Required</span>
97
                                    <input type="text" name="title" value="[% bibliotitle | html %]" disabled="disabled" readonly="readonly" /><span class="required" title="Subscriptions must be associated with a bibliographic record">Required</span>
97
                                    <span id="error_bib_not_exist"></span>
98
                                    <span id="error_bib_not_exist"></span>
98
                                    <div class="hint">Subscriptions must be associated with a bibliographic record</div>
99
                                    <div class="hint">Subscriptions must be associated with a bibliographic record</div>
99
                                    <div class="inputnote"> <a href="#" id="record_search"><i class="fa fa-search"></i> Search for record</a>
100
                                    <div class="inputnote"> <a href="#" id="record_search"><i class="fa fa-search"></i> Search for record</a>
(-)a/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js (-2 / +1 lines)
Lines 740-746 $(document).ready(function() { Link Here
740
    });
740
    });
741
741
742
    $("input[name='serialsadditems']").on("change", function(){
742
    $("input[name='serialsadditems']").on("change", function(){
743
        const display = $(this).val() == "1" ? "block" : "none";
743
        const display = $(this).val() == "1" ? "flex" : "none";
744
        $(".use_items").css('display', display).find("select").val("")
744
        $(".use_items").css('display', display).find("select").val("")
745
    });
745
    });
746
746
747
- 

Return to bug 31935