From 58bff3234226a90a140c4e45c48ecaf39ca034c2 Mon Sep 17 00:00:00 2001 From: miggland Date: Mon, 25 Jul 2022 23:28:11 +0200 Subject: [PATCH] Correct the docstring for PurchaseOrderIssue (#3399) --- InvenTree/order/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/order/api.py b/InvenTree/order/api.py index 25b974c94e..72a47e113a 100644 --- a/InvenTree/order/api.py +++ b/InvenTree/order/api.py @@ -326,7 +326,7 @@ class PurchaseOrderComplete(PurchaseOrderContextMixin, CreateAPI): class PurchaseOrderIssue(PurchaseOrderContextMixin, CreateAPI): - """API endpoint to 'complete' a purchase order.""" + """API endpoint to 'issue' (send) a purchase order.""" queryset = models.PurchaseOrder.objects.all()