From 6fcd29f07a5ce7857b4a5ed39119413dc47cf23a Mon Sep 17 00:00:00 2001 From: Matias Peralta Date: Thu, 2 May 2024 11:46:54 -0300 Subject: [PATCH] [FIX] account_ux: message_post with html fixed --- account_ux/models/account_move.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_ux/models/account_move.py b/account_ux/models/account_move.py index 6f5dcf234..59a822ab2 100644 --- a/account_ux/models/account_move.py +++ b/account_ux/models/account_move.py @@ -73,7 +73,7 @@ def action_send_invoice_mail(self): _("Please check the email template associated with" " the invoice journal."), "" + str(error) + "" - ]), + ]), body_is_html=True ) @api.onchange('partner_id')