This question has been flagged
1 Reply
6171 Views

Is it possible to round up & down the total amount in Odoo 8.0 POS when paying cash?

For example, the total amount is 2,41 €. The customer pays 2,40 € cash (round down), but POS expects 2,41 €. It won't print and close the transaction because 0,01 € is still missing. How can I overrule that?

Avatar
Discard
Author

Possible workaround: create a new payment method called 'Round Off' and put the difference to this journal. So for the example above: - Enter the amount of 2.40 with Cash - Enter the diffence 0.01 with Round Off - Now you can complete the transaction More about it: https://github.com/odoo/odoo/issues/2260

Best Answer

you have to modified the calculation of the total price for the backend and frontend as well. 

if you modified only the frontend, the backend will assume your payment is'nt enough and the state will not change to paid.

Avatar
Discard