From 76ccaaf055d229044734fbb50473f7ca78393970 Mon Sep 17 00:00:00 2001 From: rhe-odoo <rhe@odoo.com> Date: Mon, 13 Dec 2021 11:42:23 +0000 Subject: [PATCH] [FIX] pos_cash_rounding: Fix value under rounding It should be allowed to pay amount that are not rounded if the value is less than the rounding value. Ex: Rounding value: 0.05 Amount to pay: 0.04 The amount to pay should remain 0.04 and not be rounded to 0.05. This fix allows the user to pay for values under the rounding value without applying the rounding. closes odoo/odoo#81302 Signed-off-by: Masereel Pierre <pim@odoo.com> --- addons/pos_cash_rounding/static/src/js/pos_cash_rounding.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/addons/pos_cash_rounding/static/src/js/pos_cash_rounding.js b/addons/pos_cash_rounding/static/src/js/pos_cash_rounding.js index 763f5b4092d1..8ff882cc7510 100644 --- a/addons/pos_cash_rounding/static/src/js/pos_cash_rounding.js +++ b/addons/pos_cash_rounding/static/src/js/pos_cash_rounding.js @@ -63,6 +63,8 @@ models.Order = models.Order.extend({ if (utils.float_is_zero(rounding_applied, this.pos.currency.decimals)){ // https://xkcd.com/217/ return 0; + } else if(this.get_total_with_tax() < this.pos.cash_rounding[0].rounding) { + return 0; } else if(this.pos.cash_rounding[0].rounding_method === "UP" && rounding_applied < 0 && remaining > 0) { rounding_applied += this.pos.cash_rounding[0].rounding; } else if(this.pos.cash_rounding[0].rounding_method === "UP" && rounding_applied > 0 && remaining < 0) { @@ -86,6 +88,8 @@ models.Order = models.Order.extend({ for(var id in this.get_paymentlines()) { var line = this.get_paymentlines()[id]; var diff = round_pr(round_pr(line.amount, cash_rounding) - round_pr(line.amount, default_rounding), default_rounding); + if(this.get_total_with_tax() < this.pos.cash_rounding[0].rounding) + return true; if(diff && line.payment_method.is_cash_count) { return false; } else if(!this.pos.config.only_round_cash_method && diff) { -- GitLab