mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix fields for PurchaseOrderCancelSerializer (#7481)
- Throwing an error on an OPTIONS request
This commit is contained in:
parent
545ab9205b
commit
758871b8a9
@ -270,7 +270,7 @@ class PurchaseOrderCancelSerializer(serializers.Serializer):
|
|||||||
class Meta:
|
class Meta:
|
||||||
"""Metaclass options."""
|
"""Metaclass options."""
|
||||||
|
|
||||||
fields = ([],)
|
fields = []
|
||||||
|
|
||||||
def get_context_data(self):
|
def get_context_data(self):
|
||||||
"""Return custom context information about the order."""
|
"""Return custom context information about the order."""
|
||||||
|
@ -484,6 +484,9 @@ class PurchaseOrderTest(OrderTest):
|
|||||||
|
|
||||||
url = reverse('api-po-cancel', kwargs={'pk': po.pk})
|
url = reverse('api-po-cancel', kwargs={'pk': po.pk})
|
||||||
|
|
||||||
|
# Get an OPTIONS request from the endpoint
|
||||||
|
self.options(url, data={'context': True}, expected_code=200)
|
||||||
|
|
||||||
# Try to cancel the PO, but without required permissions
|
# Try to cancel the PO, but without required permissions
|
||||||
self.post(url, {}, expected_code=403)
|
self.post(url, {}, expected_code=403)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user