From cbb921329fedf81c23c72de0d9d6ceb4452fbe04 Mon Sep 17 00:00:00 2001 From: Victor Feyens <vfe@odoo.com> Date: Mon, 30 Sep 2019 10:19:39 +0000 Subject: [PATCH] [FIX] product: currency computation depends on the product company_id. --- addons/product/models/product_template.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/product/models/product_template.py b/addons/product/models/product_template.py index fa34ae65a823..093bd25f5aec 100644 --- a/addons/product/models/product_template.py +++ b/addons/product/models/product_template.py @@ -176,6 +176,7 @@ class ProductTemplate(models.Model): for p in self: p.product_variant_id = p.product_variant_ids[:1].id + @api.depends('company_id') def _compute_currency_id(self): main_company = self.env['res.company']._get_main_company() for template in self: -- GitLab