[FIX] base_product_merge : fix odoo traces 'Two fields ... have the same label'

This commit is contained in:
emiliesoutiras
2024-09-23 15:20:24 +02:00
parent 06473360a9
commit a88bfabfd3

View File

@@ -42,14 +42,14 @@ class BaseProductMerge(models.Model):
[("product.product", "Product"), ("product.template", "Template")]
)
dst_product_tmpl_id = fields.Many2one(
"product.template", string="Destination product"
"product.template", string="Destination product template"
)
product_tmpl_ids = fields.Many2many(
"product.template",
"product_tmpl_rel",
"product_tmpl_merge_id",
"product_tmpl_id",
string="Products to merge",
string="Products Template to merge",
)
merge_method = fields.Selection([("sql", "SQL"), ("orm", "ORM")], default="sql")