Merge branch 'main' into za/2166-domain-request-csv-report

This commit is contained in:
zandercymatics 2024-06-11 12:23:34 -06:00
commit 194accd90e
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 211 additions and 94 deletions

View file

@ -1080,6 +1080,8 @@ class DomainRequest(TimeStampedModel):
is_complete = self._is_city_complete()
case DomainRequest.OrganizationChoices.SPECIAL_DISTRICT:
is_complete = self._is_special_district_complete()
case DomainRequest.OrganizationChoices.SCHOOL_DISTRICT:
is_complete = True
case _:
# NOTE: Shouldn't happen, this is only if somehow they didn't choose an org type
is_complete = False