Skip to content

Commit 691bd33

Browse files
committed
[IMP] add testing cost to category to use massively
1 parent 4ec83b5 commit 691bd33

File tree

5 files changed

+37
-2
lines changed

5 files changed

+37
-2
lines changed

product_managed_replenishment_cost/__manifest__.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"security/replenishment_cost_security.xml",
2323
"views/product_supplierinfo.xml",
2424
"views/replenishment_menu.xml",
25+
"views/product_category.xml",
2526
"views/product_product.xml",
2627
"views/product_template.xml",
2728
],
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from . import replenishment_cost
2+
from . import product_category
23
from . import product_product
34
from . import product_supplierinfo
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from odoo import api, fields, models
2+
3+
4+
class ProductCategory(models.Model):
5+
_inherit = "product.category"
6+
7+
testing_cost = fields.Float(
8+
"Testing Cost",
9+
)

product_managed_replenishment_cost/models/product_product.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _compute_testing_cost(self):
8787

8888
def _inverse_testing_cost(self):
8989
if len(self.product_variant_ids) == 1:
90-
self.product_variant_ids.testing_cost = self.testing_cost
90+
self.product_variant_ids.categ_id.testing_cost = self.testing_cost
9191

9292
def _search_testing_cost(self, operator, value):
9393
products = self.env["product.product"].search(
@@ -137,9 +137,11 @@ class ProductProduct(models.Model):
137137
)
138138
testing_cost = fields.Float(
139139
string="Testing Cost (€/pz)",
140-
company_dependent=True,
141140
groups="base.group_user",
141+
compute="_compute_testing_cost",
142142
digits="Product Price",
143+
store=True,
144+
readonly=False,
143145
)
144146
landed_cost = fields.Float(
145147
string="Landed cost",
@@ -153,6 +155,14 @@ class ProductProduct(models.Model):
153155
string="Landed with adjustment/depreciation/testing"
154156
)
155157

158+
@api.depends("categ_id.testing_cost")
159+
def _compute_testing_cost(self):
160+
for product in self:
161+
product.testing_cost = product.categ_id.testing_cost
162+
163+
def _inverse_testing_cost(self):
164+
self.categ_id.testing_cost = self.testing_cost
165+
156166
@api.depends(
157167
"seller_ids",
158168
"seller_ids.price",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<odoo>
3+
4+
<record id="product_category_form_view" model="ir.ui.view">
5+
<field name="model">product.category</field>
6+
<field name="inherit_id" ref="product.product_category_form_view" />
7+
<field name="arch" type="xml">
8+
<field name="parent_id" position="after">
9+
<field name="testing_cost"/>
10+
</field>
11+
</field>
12+
</record>
13+
14+
</odoo>

0 commit comments

Comments
 (0)