diff --git a/idhub/admin/forms.py b/idhub/admin/forms.py index a8ac0fa..01f39f8 100644 --- a/idhub/admin/forms.py +++ b/idhub/admin/forms.py @@ -225,7 +225,7 @@ class ImportForm(forms.Form): props = self.json_schema.get("properties", {}) # Forze than pandas read one column as string - dtype_dict = {"phoneNumber": str} + dtype_dict = {"phoneNumber": str, 'postCode': str} df = pd.read_excel(data, dtype=dtype_dict) df.fillna('', inplace=True)