2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Allow processing of "null" cells (caused by xls / xlsx import)

This commit is contained in:
Oliver
2022-02-17 22:48:15 +11:00
parent 31fd69fc76
commit 1b6dacd5ba

View File

@ -517,6 +517,7 @@ class DataFileExtractSerializer(serializers.Serializer):
child=serializers.ListField(
child=serializers.CharField(
allow_blank=True,
allow_null=True,
),
)
)