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 1618-1623
Link Here
|
1618 |
if ( barcode ) barcode.remove(); |
1618 |
if ( barcode ) barcode.remove(); |
1619 |
this.form.submit(); |
1619 |
this.form.submit(); |
1620 |
}); |
1620 |
}); |
|
|
1621 |
$(".ignore").on("click",function(e){ |
1622 |
e.preventDefault(); |
1623 |
}); |
1621 |
$('.cancel-hold').on("click",function(e){ |
1624 |
$('.cancel-hold').on("click",function(e){ |
1622 |
let cancel_form = document.getElementById('cancellation-reason'); |
1625 |
let cancel_form = document.getElementById('cancellation-reason'); |
1623 |
let cancel_reason = ''; |
1626 |
let cancel_reason = ''; |
1624 |
- |
|
|