review changes

This commit is contained in:
matthewswspence 2025-03-11 10:48:54 -05:00
parent 9ddf7a6cd0
commit b09f68946f
No known key found for this signature in database
GPG key ID: FB458202A7852BA4
4 changed files with 30 additions and 51 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: