Merge branch 'ms/3212-FEB-purpose-questions' into ms/3212-FEB-questions

This commit is contained in:
matthewswspence 2025-03-11 11:25:02 -05:00
commit 10d3225cc0
No known key found for this signature in database
GPG key ID: FB458202A7852BA4
5 changed files with 30 additions and 54 deletions

View file

@ -232,9 +232,6 @@ class DomainRequestWizard(TemplateView):
if portfolio and not self._domain_request.generic_org_type:
self._domain_request.generic_org_type = portfolio.organization_type
self._domain_request.save()
if portfolio and not self._domain_request.federal_type:
self._domain_request.federal_type = portfolio.federal_type
self._domain_request.save()
else:
self._domain_request = DomainRequest.objects.create(creator=self.request.user)
return self._domain_request
@ -474,7 +471,6 @@ class DomainRequestWizard(TemplateView):
"requested_domain__name": requested_domain_name,
}
context["domain_request_id"] = self.domain_request.id
context["is_executive"] = self.domain_request.is_federal() and self.domain_request.federal_type == "Executive"
return context
def get_step_list(self) -> list: