removed lower() when parsing csv data

This commit is contained in:
Sam
2021-03-02 10:45:10 +00:00
parent f71f880a6b
commit 626461bd99

View File

@@ -259,7 +259,7 @@ def product_loader(csv_reader, user, company=None):
# dec = row[key][:-1].strip()
row[key] = row[key][:-1].strip()
else:
row[key] = row[key].strip().lower()
row[key] = row[key].strip()
# check required data
if '' in (row['nombre-producto'], row['descripcion'], row['precio'],):