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 models

View file

@ -0,0 +1,17 @@
{
"name": "Product List Price Multicompany",
"version": "16.0.1.0.0",
"summary": "Manage product list prices across multiple companies",
"description": """
This module allows you to manage product list prices across multiple companies in Odoo.
""",
"author": "Criptomart",
"website": "https://www.criptomart.net",
"category": "Sales",
"depends": ["base", "product"],
"data": [],
"installable": True,
"application": False,
"auto_install": False,
"license": "AGPL-3",
}

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)