add product_list_price_multicompany
This commit is contained in:
parent
c314af6c26
commit
53e1a9737f
4 changed files with 26 additions and 0 deletions
1
product_list_price_multicompany/__init__.py
Normal file
1
product_list_price_multicompany/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
from . import models
|
||||||
17
product_list_price_multicompany/__manifest__.py
Normal file
17
product_list_price_multicompany/__manifest__.py
Normal 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",
|
||||||
|
}
|
||||||
1
product_list_price_multicompany/models/__init__.py
Normal file
1
product_list_price_multicompany/models/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
from . import product
|
||||||
7
product_list_price_multicompany/models/product.py
Normal file
7
product_list_price_multicompany/models/product.py
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
from odoo import models, fields
|
||||||
|
|
||||||
|
|
||||||
|
class ProductTemplate(models.Model):
|
||||||
|
_inherit = "product.template"
|
||||||
|
|
||||||
|
list_price = fields.Float(company_dependent=True)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue