Fix country conversion for unknown
This commit is contained in:
parent
752abb0cc6
commit
34b7a1c280
1 changed files with 8 additions and 2 deletions
|
@ -181,7 +181,10 @@ class Assignment(Base):
|
|||
def toDict(self) -> dict:
|
||||
values = {c.name: getattr(self, c.name) for c in self.__table__.columns}
|
||||
if self.turk_country:
|
||||
values['turk_country_code'] = cc.convert([self.turk_country], to='ISO2')
|
||||
if self.turk_country == 'Unknown':
|
||||
values['turk_country_code'] = '--'
|
||||
else:
|
||||
values['turk_country_code'] = cc.convert([self.turk_country], to='ISO2')
|
||||
else:
|
||||
values['turk_country_code'] = None
|
||||
return values
|
||||
|
@ -192,7 +195,10 @@ class Assignment(Base):
|
|||
'turk_country': self.turk_country
|
||||
}
|
||||
if self.turk_country:
|
||||
values['turk_country_code'] = cc.convert([self.turk_country], to='ISO2')
|
||||
if self.turk_country == 'Unknown':
|
||||
values['turk_country_code'] = '--'
|
||||
else:
|
||||
values['turk_country_code'] = cc.convert([self.turk_country], to='ISO2')
|
||||
else:
|
||||
values['turk_country_code'] = None
|
||||
return values
|
||||
|
|
Loading…
Reference in a new issue