0
Hi,
is there any keyboard shortcut which opens the cash drawer without transaction?
0
Thank you for sharing 😃
0
Hello,
No. There is no such option. Only button on receipt can help you to open the cash drawer.
Thank you
0
Hello,
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 -->
We use Cookies
We use cookies to ensure that we give you the best experience on our website. By continuing to browse the site you are agreeing to our use of cookies.