Fix PDF variable for validity end date

This commit is contained in:
Raphael Michel
2023-02-14 11:01:54 +01:00
parent ccebbb6307
commit 35fb20fe76

View File

@@ -435,7 +435,7 @@ DEFAULT_VARIABLES = OrderedDict((
"label": _("Validity end date"),
"editor_sample": _("2017-05-31"),
"evaluate": lambda op, order, ev: date_format(
now().astimezone(timezone(ev.settings.timezone)),
op.valid_until.astimezone(timezone(ev.settings.timezone)),
"SHORT_DATE_FORMAT"
) if op.valid_until else ""
}),