Fix different ordering

This commit is contained in:
zandercymatics 2024-12-18 14:53:17 -07:00
parent 8b72c654b8
commit fcdc0f0f0f
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -1140,9 +1140,9 @@ class DomainDataFull(DomainExport):
""" """
# Coalesce is used to replace federal_type of None with ZZZZZ # Coalesce is used to replace federal_type of None with ZZZZZ
return [ return [
"converted_generic_org_type", "organization_type",
Coalesce("converted_federal_type", Value("ZZZZZ")), Coalesce("federal_type", Value("ZZZZZ")),
"converted_federal_agency", "federal_agency",
"domain__name", "domain__name",
] ]
@ -1250,9 +1250,9 @@ class DomainDataFederal(DomainExport):
""" """
# Coalesce is used to replace federal_type of None with ZZZZZ # Coalesce is used to replace federal_type of None with ZZZZZ
return [ return [
"converted_generic_org_type", "organization_type",
Coalesce("converted_federal_type", Value("ZZZZZ")), Coalesce("federal_type", Value("ZZZZZ")),
"converted_federal_agency", "federal_agency",
"domain__name", "domain__name",
] ]