forked from CGM_Public/pretix_original
Catch RelatedObjectDoesNotExist error
This commit is contained in:
@@ -214,9 +214,9 @@ class OrderModify(EventViewMixin, OrderDetailMixin, QuestionsViewMixin, Template
|
|||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def invoice_address(self):
|
def invoice_address(self):
|
||||||
if self.order.invoice_address:
|
try:
|
||||||
return self.order.invoice_address
|
return self.order.invoice_address
|
||||||
else:
|
except InvoiceAddress.DoesNotExist:
|
||||||
return InvoiceAddress(order=self.order)
|
return InvoiceAddress(order=self.order)
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
|
|||||||
Reference in New Issue
Block a user