This commit is contained in:
2026-02-14 16:07:08 +01:00
parent 0fcaca2b5a
commit e43189f052
4 changed files with 11 additions and 10 deletions

View File

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