diff --git a/frontend/src/hooks/useOus/index.tsx b/frontend/src/hooks/useOus/index.tsx index c2f1205b7b0b1e44ebf8d711479911e637c2b239..ba1a2119039e0bfb242355d2e8f78f21f5eba98e 100644 --- a/frontend/src/hooks/useOus/index.tsx +++ b/frontend/src/hooks/useOus/index.tsx @@ -6,6 +6,7 @@ type OuData = { nb: string en: string orgreg_id?: string + acronym_nob?: string } function useOus(): OuData[] | undefined { diff --git a/frontend/src/routes/sponsor/register/stepPersonForm.tsx b/frontend/src/routes/sponsor/register/stepPersonForm.tsx index eadf6d0f338e7b29dba24207379ee9c817a413be..c018bf8a9121464b318efa91216e583b71d3f896 100644 --- a/frontend/src/routes/sponsor/register/stepPersonForm.tsx +++ b/frontend/src/routes/sponsor/register/stepPersonForm.tsx @@ -243,7 +243,8 @@ const StepPersonForm = forwardRef( .sort(i18n.language === 'en' ? enSort : nbSort) .map((ou) => ( <MenuItem key={ou.id.toString()} value={ou.id}> - {getOuName(ou)} ({ou.orgreg_id ?? ''}) + {getOuName(ou)} ({ou.acronym_nob ?? ''}) ( + {ou.orgreg_id ?? ''}) </MenuItem> ))} </TextField> diff --git a/greg/api/serializers/organizational_unit.py b/greg/api/serializers/organizational_unit.py index 15130f4f0ce9bcf041c2d06f1fc78f4ac0047c87..c9339ccf222114c91f1d58330e5f8ad3dec55c36 100644 --- a/greg/api/serializers/organizational_unit.py +++ b/greg/api/serializers/organizational_unit.py @@ -29,4 +29,4 @@ class SponsorOrgUnitsSerializer(ModelSerializer): class Meta: model = OrganizationalUnit - fields = ["id", "nb", "en", "orgreg_id"] + fields = ["id", "nb", "en", "orgreg_id", "acronym_nob"] diff --git a/greg/models.py b/greg/models.py index c75a5dd25bc494f663ce61528bf3264e851de9b1..d604e78a9a506a5d67fdbd7d96ce0128d7ab3912 100644 --- a/greg/models.py +++ b/greg/models.py @@ -482,6 +482,15 @@ class OrganizationalUnit(BaseModel): .first() ) + @property + def acronym_nob(self) -> Optional[str]: + """Gets the Norwegian bokmaal acronym if it exists""" + return ( + self.identifiers.filter(name="acronym_nob") + .values_list("value", flat=True) + .first() + ) + def __repr__(self) -> str: return "{}(id={!r}, name_en={!r}, parent={!r})".format( self.__class__.__name__, self.pk, self.name_en, self.parent