mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Check for empty column name in data importer
Ref: https://github.com/inventree/InvenTree/issues/2940
This commit is contained in:
parent
64e2234159
commit
3db09156ed
@ -421,7 +421,10 @@ class DataFileUploadSerializer(serializers.Serializer):
|
||||
- Fuzzy match
|
||||
"""
|
||||
|
||||
column_name = column_name.strip()
|
||||
if not column_name:
|
||||
return None
|
||||
|
||||
column_name = str(column_name).strip()
|
||||
|
||||
column_name_lower = column_name.lower()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user