convert number cols as string if this is in schema

This commit is contained in:
Cayo Puigdefabregas 2024-02-27 15:28:25 +01:00
parent fd6035aba0
commit 3efd530d18
1 changed files with 3 additions and 1 deletions

View File

@ -227,7 +227,9 @@ class ImportForm(forms.Form):
df[col] = df[col].dt.strftime("%Y-%m-%d")
for col in df.select_dtypes(include=['number']).columns:
df[col] = df[col].astype(str)
sc_col = self.json_schema.get("properties", {}).get(col, {})
if sc_col.get("type") == "string":
df[col] = df[col].astype(str)
data_pd = df.fillna('').to_dict()