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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-2 / +4 lines)
Lines 733-739 Link Here
733
733
734
                                <input type="hidden" name="print_slip" value="0" />
734
                                <input type="hidden" name="print_slip" value="0" />
735
                                <button type="button" class="btn btn-default print" accesskey="P"> <i class="fa fa-print"></i> Print slip and confirm (P) </button>
735
                                <button type="button" class="btn btn-default print" accesskey="P"> <i class="fa fa-print"></i> Print slip and confirm (P) </button>
736
                                <button data-bs-dismiss="modal" type="submit" class="btn btn-default" accesskey="I"> <i class="fa fa-times"></i> Ignore (I) </button>
736
                                <button data-bs-dismiss="modal" type="submit" class="btn btn-default ignore" accesskey="I"> <i class="fa fa-times"></i> Ignore (I) </button>
737
737
738
                                <fieldset class="action">
738
                                <fieldset class="action">
739
                                    [% SET hold_cancellation = AuthorisedValues.GetAuthValueDropbox('HOLD_CANCELLATION') %]
739
                                    [% SET hold_cancellation = AuthorisedValues.GetAuthValueDropbox('HOLD_CANCELLATION') %]
Lines 1616-1621 Link Here
1616
                if ( barcode ) barcode.remove();
1616
                if ( barcode ) barcode.remove();
1617
                this.form.submit();
1617
                this.form.submit();
1618
            });
1618
            });
1619
            $(".ignore").on("click",function(e){
1620
                e.preventDefault();
1621
            });
1619
            $('.cancel-hold').on("click",function(e){
1622
            $('.cancel-hold').on("click",function(e){
1620
                let cancel_form = document.getElementById('cancellation-reason');
1623
                let cancel_form = document.getElementById('cancellation-reason');
1621
                let cancel_reason = '';
1624
                let cancel_reason = '';
1622
- 

Return to bug 39108