From e658017f76c98dc09f20cf1c60cf84c32f21fe74 Mon Sep 17 00:00:00 2001 From: Nicolas Martinelli <nim@odoo.com> Date: Wed, 27 May 2015 20:40:26 +0200 Subject: [PATCH] [FIX] lunch: return warning instead of UserError if amount order is larger than balance --- addons/lunch/models/lunch.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/addons/lunch/models/lunch.py b/addons/lunch/models/lunch.py index 4f572c6019aa..e60019a4ff7b 100644 --- a/addons/lunch/models/lunch.py +++ b/addons/lunch/models/lunch.py @@ -81,7 +81,12 @@ class LunchOrder(models.Model): balance = sum(cashmove.amount for cashmove in prev_cashmove) if self.total > balance: - raise UserError('%s (%s %s)' % (_('Insufficient balance. The total amount of the order is larger than the available balance'), balance, self.currency_id.name)) + return { + 'warning': { + 'title': _('Insufficient balance'), + 'message': ('%s (%s %s)' % (_('The total amount of the order is larger than the available balance'), balance, self.currency_id.name)), + }, + } @api.one @api.constrains('date') -- GitLab