This commit is contained in:
2026-02-14 17:38:43 +01:00
parent e43189f052
commit 9ed4d5f6bb
3 changed files with 13 additions and 6 deletions

View File

@@ -537,8 +537,9 @@ class ValuationReport(ValuationBase, ModelView):
context = Transaction().context
valuation_date = context.get('valuation_date')
strategy = context.get('strategy')
wh = True
if val.date:
wh = (val.date == valuation_date)
wh &= (val.date == valuation_date)
if strategy:
wh &= (val.strategy == strategy)