Skip to content

Commit 0dc9e5f

Browse files
committed
Merge PR #3325 into 16.0
Signed-off-by rousseldenis
2 parents 090b773 + e496515 commit 0dc9e5f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

sale_triple_discount/models/sale_order_line.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def triple_discount_preprocess(self):
102102
this method is called multiple times.
103103
Updating the cache provides consistency through re-computations."""
104104
prev_values = dict()
105-
self.invalidate_cache(fnames=self._discount_fields(), ids=self.ids)
105+
self.invalidate_recordset(self._discount_fields())
106106
for line in self:
107107
prev_values[line] = {
108108
fname: line[fname] for fname in self._discount_fields()
@@ -118,10 +118,7 @@ def triple_discount_preprocess(self):
118118
def triple_discount_postprocess(self, prev_values):
119119
"""Restore the discounts of the lines in the dictionary prev_values.
120120
Updating the cache provides consistency through re-computations."""
121-
self.invalidate_cache(
122-
fnames=self._discount_fields(),
123-
ids=[line.id for line in list(prev_values.keys())],
124-
)
121+
self.invalidate_recordset(self._discount_fields())
125122
for line, prev_vals_dict in list(prev_values.items()):
126123
line.update(prev_vals_dict)
127124

0 commit comments

Comments
 (0)