Question: Shortcut to open cash drawer

Shortcut to open cash drawer

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

BF

Bilal Feroz

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

    Mian Saleem

    Answered
    Hello,

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

    Thank you
  • BF

    Bilal Feroz

    Answered
    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 -->
    ```
  • MS

    Mian Saleem

    Answered
    Thank you for sharing :)
  • Login to Reply