Skip to content

Commit

Permalink
Fix status mail showing non-discounted course price
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdierich committed Apr 15, 2024
1 parent 78f9156 commit 5988239
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/spz/mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def generate_status_mail(applicant, course, time=None, restock=False):
status=subject_status),
body=render_template(
template,
attendance=attendance,
applicant=applicant,
course=course,
has_to_pay=not attendance.is_free if attendance else False,
Expand Down
2 changes: 1 addition & 1 deletion src/spz/templates/mails/registeredmail.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% if has_to_pay %}
Sie sind zahlungspflichtig im Kurs.

Bitte überweisen Sie die Kursgebühr i. H. v. {{ course.price }} Euro unter Angabe des folgenden Verwendungszwecks:
Bitte überweisen Sie die Kursgebühr i. H. v. {{ attendance.discounted_price }} Euro unter Angabe des folgenden Verwendungszwecks:

XD02003911901 {{ applicant.last_name ~ ', ' ~ applicant.first_name ~ ', ' ~ 'A' ~ applicant.id ~ 'C' ~ course.id ~ ', ' ~ course.full_name }}

Expand Down
2 changes: 1 addition & 1 deletion src/spz/templates/mails/restockmail.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Im Zuge des Nachrückverfahrens haben Sie zahlungspflichtig einen Platz im oben genannten
Sprachkurs erhalten.

Bitte überweisen Sie die Kursgebühr i. H. v. {{ course.price }} Euro unter Angabe des folgenden Verwendungszwecks:
Bitte überweisen Sie die Kursgebühr i. H. v. {{ attendance.discounted_price }} Euro unter Angabe des folgenden Verwendungszwecks:

XD02003911901 {{ applicant.last_name ~ ', ' ~ applicant.first_name ~ ', ' ~ 'A' ~ applicant.id ~ 'C' ~ course.id ~ ', ' ~ course.full_name }}

Expand Down

0 comments on commit 5988239

Please sign in to comment.