mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
fix: 🐛 Fix send_mail_voucher function
This commit is contained in:
parent
f297bdd846
commit
64b6e58182
1 changed files with 2 additions and 2 deletions
|
@ -105,8 +105,8 @@ def send_mail_voucher(invoice, request=None):
|
|||
"lastname": invoice.user.surname,
|
||||
"email": invoice.user.email,
|
||||
"phone": invoice.user.telephone,
|
||||
"date_end": invoice.get_subscription().latest("date_end").date_end_memb,
|
||||
"date_begin": invoice.get_subscription().earliest("date_start").date_start_memb,
|
||||
"date_end": invoice.get_subscription().latest("date_end_memb").date_end_memb,
|
||||
"date_begin": invoice.get_subscription().earliest("date_start_memb").date_start_memb,
|
||||
}
|
||||
templatename = CotisationsOption.get_cached_value(
|
||||
"voucher_template"
|
||||
|
|
Loading…
Reference in a new issue