2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-07 04:12:11 +00:00

Fix error message (#10129)

This commit is contained in:
Oliver
2025-08-05 12:02:33 +10:00
committed by GitHub
parent 3e74ab5a85
commit fb3b1fe116

View File

@@ -580,9 +580,17 @@ class BuildOutputCompleteSerializer(serializers.Serializer):
and not stock_item.passedAllRequiredTests()
):
serial = stock_item.serial
errors.append(
_(f'Build output {serial} has not passed all required tests')
)
if serial:
errors.append(
_(
f'Build output {serial} has not passed all required tests'
)
)
else:
errors.append(
_('Build output has not passed all required tests')
)
if errors:
raise ValidationError(errors)