mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 03:25:42 +00:00
Perform unique checks for InvenTreeModelSerializer in DRF
- Prevents ValidationError from throwing in the wrong spot and not being handled
This commit is contained in:
@ -50,6 +50,7 @@ class InvenTreeModelSerializer(serializers.ModelSerializer):
|
||||
|
||||
# Now ensure the underlying model is correct
|
||||
instance = self.Meta.model(**data)
|
||||
instance.validate_unique()
|
||||
instance.clean()
|
||||
|
||||
return data
|
||||
|
Reference in New Issue
Block a user