File tree 1 file changed +2
-5
lines changed
sale_triple_discount/models
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def triple_discount_preprocess(self):
102
102
this method is called multiple times.
103
103
Updating the cache provides consistency through re-computations."""
104
104
prev_values = dict ()
105
- self .invalidate_cache ( fnames = self ._discount_fields (), ids = self . ids )
105
+ self .invalidate_recordset ( self ._discount_fields ())
106
106
for line in self :
107
107
prev_values [line ] = {
108
108
fname : line [fname ] for fname in self ._discount_fields ()
@@ -118,10 +118,7 @@ def triple_discount_preprocess(self):
118
118
def triple_discount_postprocess (self , prev_values ):
119
119
"""Restore the discounts of the lines in the dictionary prev_values.
120
120
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 ())
125
122
for line , prev_vals_dict in list (prev_values .items ()):
126
123
line .update (prev_vals_dict )
127
124
You can’t perform that action at this time.
0 commit comments