mirror of
https://github.com/pretix/pretix.git
synced 2026-08-13 11:17:01 +00:00
handle country=None in InvoiceAddress even if it is not allowed
This commit is contained in:
@@ -3438,7 +3438,7 @@ class InvoiceAddress(models.Model):
|
||||
self.name,
|
||||
self.street,
|
||||
(self.zipcode or '') + ' ' + (self.city or '') + ' ' + (self.state_for_address or ''),
|
||||
self.country.name,
|
||||
self.country.name if self.country else '',
|
||||
self.vat_id,
|
||||
self.custom_field,
|
||||
self.internal_reference,
|
||||
|
||||
Reference in New Issue
Block a user