mirror of
https://github.com/pretix/pretix.git
synced 2026-08-19 12:16:26 +00:00
Fix attendee emails not being sent on free boxoffice orders
This commit is contained in:
@@ -650,7 +650,7 @@ class OrderViewSet(viewsets.ModelViewSet):
|
|||||||
if send_mail:
|
if send_mail:
|
||||||
free_flow = (
|
free_flow = (
|
||||||
payment and order.total == Decimal('0.00') and order.status == Order.STATUS_PAID and
|
payment and order.total == Decimal('0.00') and order.status == Order.STATUS_PAID and
|
||||||
not order.require_approval and payment.provider == "free"
|
not order.require_approval and payment.provider in ("free", "boxoffice")
|
||||||
)
|
)
|
||||||
if order.require_approval:
|
if order.require_approval:
|
||||||
email_template = request.event.settings.mail_text_order_placed_require_approval
|
email_template = request.event.settings.mail_text_order_placed_require_approval
|
||||||
|
|||||||
Reference in New Issue
Block a user