Backend: Modify order information: Do not send email by default

This commit is contained in:
Raphael Michel
2019-07-29 15:35:14 +02:00
parent a664d51dbc
commit e90356546f

View File

@@ -1329,7 +1329,7 @@ class OrderModifyInformation(OrderQuestionsViewMixin, OrderView):
@cached_property
def other_form(self):
return OtherOperationsForm(prefix='other', order=self.order,
return OtherOperationsForm(prefix='other', order=self.order, initial={'notify': False},
data=self.request.POST if self.request.method == "POST" else None)
def post(self, request, *args, **kwargs):