minor fix

This commit is contained in:
Camilo Sarmiento 2020-06-25 10:18:48 -05:00
parent 8c7700c97e
commit 5fb6df3199

View file

@ -123,7 +123,7 @@ class Employee(metaclass=PoolMeta):
'second_name': sn,
'first_family_name': ffn,
'second_family_name': sfn,
'birthday': compute_date(row[23]),
'birthday': compute_date(row[23]) if row[23] else None,
'sex': SEX[row[24]],
'marital_status': MARITAL[row[25]],
'blood_group': BLOOD[row[31]],