forze Phid to be string

This commit is contained in:
Cayo Puigdefabregas 2022-09-14 14:58:54 +02:00
parent d08b93d3fd
commit 708c2cbdfa
1 changed files with 3 additions and 1 deletions

View File

@ -1520,7 +1520,9 @@ class UploadPlaceholderForm(FlaskForm):
else:
self.source = "Excel File: {}".format(_file.filename)
try:
data = pd.read_excel(_file).fillna('').to_dict()
data = (
pd.read_excel(_file, converters={'Phid': str}).fillna('').to_dict()
)
except ValueError:
txt = ["File don't have a correct format"]
self.placeholder_file.errors = txt