mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-04 06:18:48 +00:00
Enhance exception management (#8174)
This commit is contained in:
parent
0f2cfdcfd4
commit
6d0353028f
@ -353,7 +353,8 @@ class LineItemPricing(PartPricing):
|
||||
try:
|
||||
part_id = self.request.POST.get('pk')
|
||||
part = Part.objects.get(id=part_id)
|
||||
except Part.DoesNotExist:
|
||||
except Exception:
|
||||
# Part not found, or invalid ID
|
||||
return None
|
||||
else:
|
||||
return None
|
||||
|
Loading…
x
Reference in New Issue
Block a user