Shortcut to open cash drawer

0

Hi,
is there any keyboard shortcut which opens the cash drawer without transaction?

Question Resolved For: Stock Manager Advance with Point of Sale Module 0 Votes 3 Answers 2.8k Views
Asked by Bilal Feroz 5 years ago

0

Answered by Mian Saleem

Thank you for sharing 😃

0

Answered by Mian Saleem 5 years ago

Hello,

No. There is no such option. Only button on receipt can help you to open the cash drawer.

Thank you

0

Answered by Bilal Feroz 5 years ago

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.