Skip to Content
Menu
This question has been flagged
1 Reply
966 Views

When keying in the payment on POS, the numpad shifts to one side or the other due to Odoo's responsiveness.

This movement is especially more pronounced when using a big touch screen. This makes the user press the wrong figure when the numpad shifts. Therefore increasing the time it takes to complete a transaction as one has to keep correcting the figure.

How can the numpad be made to remain in one position when typing in the figures? I am observing this on Odoo 16.

Avatar
Discard
Best Answer

To fix the issue with the numpad shifting on the POS screen, you can try disabling the responsive behavior of the screen. This can be done by adding the following CSS code to your POS screen:

.o_touch_container {
        width: auto !important;
    }

This will prevent the POS screen from adjusting its width based on the screen size, and the numpad should remain in one position when typing in the figures.

Note: this solution may not work if you are using a custom POS screen that has a different structure than the default POS screen in Odoo. In that case, you may need to adjust the CSS code to target the correct elements on your custom POS screen.

Avatar
Discard
Related Posts Replies Views Activity
0
Dec 24
46
1
Dec 24
177
0
Nov 24
90
1
Nov 24
153
1
Nov 24
187