add product_list_price_multicompany

This commit is contained in:
Luis 2025-01-21 11:25:57 +01:00
parent c314af6c26
commit 53e1a9737f
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1 @@
from . import product

View file

@ -0,0 +1,7 @@
from odoo import models, fields
class ProductTemplate(models.Model):
_inherit = "product.template"
list_price = fields.Float(company_dependent=True)