BF
Asked
Hi,
is there any keyboard shortcut which opens the cash drawer without transaction?
is there any keyboard shortcut which opens the cash drawer without transaction?
- MSAnsweredHello,
No. There is no such option. Only button on receipt can help you to open the cash drawer.
Thank you - BFAnsweredHello,
I figured somehow, for others who need help in this, I added the following code in
/themes/default/admin/views/pos/add.php
In header section
```
<!-- Add No Sale Link Script -->
<script type="text/javascript">
function printDot() {
var mywindow = window.open('', 'sma_pos_print', 'height=400,width=250');
mywindow.document.write('<html><head><title>CashDrawer</title>');
mywindow.document.write('</head><body></body></html>');
mywindow.print();
mywindow.close();
return true;
}
$(window).load(function () {
window.print();
return false;
});
</script>
<!-- End No Sale Link Script -->
```
Body:
Added No Sale Button:
```
<!-- No Sale Button -->
<li class="dropdown">
<button onclick="printDot();" class="btn bblue pos-tip">NS</button>
</li>
<!-- No Sale Button -->
``` - MSAnsweredThank you for sharing :)
- Login to Reply