From 9d2355206132c24bfa0358f17404923390f593c4 Mon Sep 17 00:00:00 2001 From: Christian Gilbert Date: Wed, 18 Sep 2024 11:22:22 -0500 Subject: [PATCH] Closes #324 --- all_in_one_purchase_kit/models/account_move.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all_in_one_purchase_kit/models/account_move.py b/all_in_one_purchase_kit/models/account_move.py index f26dbbf14d..91208baf30 100644 --- a/all_in_one_purchase_kit/models/account_move.py +++ b/all_in_one_purchase_kit/models/account_move.py @@ -38,7 +38,7 @@ def _compute_amount_total_company_signed(self): """Compute the total amount in company currency for each record.""" for amount in self: amount.amount_total_company_signed = self.env[ - 'res.currency']._compute( + 'res.currency']._convert( amount.currency_id, amount.company_id.currency_id, amount.amount_total)