Fix missing ticket attachments

This commit is contained in:
Raphael Michel
2018-11-29 10:01:20 +01:00
parent b1019672b0
commit d8070ba8a3
2 changed files with 4 additions and 3 deletions

View File

@@ -558,7 +558,8 @@ class Order(LockModel, LoggedModel):
'subject': subject,
'message': email_content,
'recipient': recipient,
'invoices': [i.pk for i in invoices] if invoices else []
'invoices': [i.pk for i in invoices] if invoices else [],
'attach_tickets': attach_tickets,
}
)