diff --git a/sale_company_currency/models/sale_order.py b/sale_company_currency/models/sale_order.py index f8ed7c7348e..123cb73a146 100644 --- a/sale_company_currency/models/sale_order.py +++ b/sale_company_currency/models/sale_order.py @@ -29,5 +29,5 @@ def _compute_amount_company(self): if order.currency_id.id == order.company_id.currency_id.id: to_amount = order.amount_total else: - to_amount = order.amount_total / order.currency_rate + to_amount = order.amount_total * order.currency_rate order.amount_total_curr = to_amount