2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

Bug fix: allow empty barcode field when receiving purchase orders

This commit is contained in:
Oliver 2021-10-19 09:40:19 +11:00
parent 36d6628eb6
commit f333532a1f

View File

@ -235,6 +235,7 @@ class POLineItemReceiveSerializer(serializers.Serializer):
help_text=_('Unique identifier field'),
default='',
required=False,
allow_null=True,
allow_blank=True,
)