@@ -87,7 +87,7 @@ def _compute_testing_cost(self):
87
87
88
88
def _inverse_testing_cost (self ):
89
89
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
91
91
92
92
def _search_testing_cost (self , operator , value ):
93
93
products = self .env ["product.product" ].search (
@@ -137,9 +137,11 @@ class ProductProduct(models.Model):
137
137
)
138
138
testing_cost = fields .Float (
139
139
string = "Testing Cost (€/pz)" ,
140
- company_dependent = True ,
141
140
groups = "base.group_user" ,
141
+ compute = "_compute_testing_cost" ,
142
142
digits = "Product Price" ,
143
+ store = True ,
144
+ readonly = False ,
143
145
)
144
146
landed_cost = fields .Float (
145
147
string = "Landed cost" ,
@@ -153,6 +155,14 @@ class ProductProduct(models.Model):
153
155
string = "Landed with adjustment/depreciation/testing"
154
156
)
155
157
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
+
156
166
@api .depends (
157
167
"seller_ids" ,
158
168
"seller_ids.price" ,
0 commit comments