[FIX] account_asset_management: fix remaining_value cache miss error.

This commit is contained in:
Ernesto Tejeda
2020-07-08 20:11:10 -04:00
parent 5e14bd2be7
commit 2febf57981

View File

@@ -70,7 +70,11 @@ class AccountAssetLine(models.Model):
dlines = self.filtered(lambda l: l.id not in exclude_ids)
dlines = dlines.filtered(lambda l: l.type == "depreciate")
dlines = dlines.sorted(key=lambda l: l.line_date)
# Give value 0 to the lines that are not going to be calculated
# to avoid cache miss error
all_excluded_lines = self - dlines
all_excluded_lines.depreciated_value = 0
all_excluded_lines.remaining_value = 0
# Group depreciation lines per asset
asset_ids = dlines.mapped("asset_id")
grouped_dlines = []