mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: Getting next ASN when no documents have an ASN (#5431)
* Fixes the next ASN logic to account for no ASNs yet being assigned * Updates so the ASN will start at 1 * Do the same calculation without the branch
This commit is contained in:
parent
e16645b146
commit
51dd95be3d
@ -2051,6 +2051,35 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
|
|||||||
self.assertEqual(resp.status_code, status.HTTP_200_OK)
|
self.assertEqual(resp.status_code, status.HTTP_200_OK)
|
||||||
self.assertEqual(resp.content, b"1000")
|
self.assertEqual(resp.content, b"1000")
|
||||||
|
|
||||||
|
def test_next_asn_no_documents_with_asn(self):
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- Existing document, but with no ASN assugned
|
||||||
|
WHEN:
|
||||||
|
- API request to get next ASN
|
||||||
|
THEN:
|
||||||
|
- ASN 1 is returned
|
||||||
|
"""
|
||||||
|
user1 = User.objects.create_user(username="test1")
|
||||||
|
user1.user_permissions.add(*Permission.objects.all())
|
||||||
|
user1.save()
|
||||||
|
|
||||||
|
doc1 = Document.objects.create(
|
||||||
|
title="test",
|
||||||
|
mime_type="application/pdf",
|
||||||
|
content="this is a document 1",
|
||||||
|
checksum="1",
|
||||||
|
)
|
||||||
|
doc1.save()
|
||||||
|
|
||||||
|
self.client.force_authenticate(user1)
|
||||||
|
|
||||||
|
resp = self.client.get(
|
||||||
|
"/api/documents/next_asn/",
|
||||||
|
)
|
||||||
|
self.assertEqual(resp.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(resp.content, b"1")
|
||||||
|
|
||||||
|
|
||||||
class TestDocumentApiV2(DirectoriesMixin, APITestCase):
|
class TestDocumentApiV2(DirectoriesMixin, APITestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
@ -757,16 +757,12 @@ class UnifiedSearchViewSet(DocumentViewSet):
|
|||||||
|
|
||||||
@action(detail=False, methods=["GET"], name="Get Next ASN")
|
@action(detail=False, methods=["GET"], name="Get Next ASN")
|
||||||
def next_asn(self, request, *args, **kwargs):
|
def next_asn(self, request, *args, **kwargs):
|
||||||
return Response(
|
max_asn = Document.objects.aggregate(
|
||||||
(
|
Max("archive_serial_number", default=0),
|
||||||
Document.objects.filter(archive_serial_number__gte=0)
|
).get(
|
||||||
.order_by("archive_serial_number")
|
"archive_serial_number__max",
|
||||||
.last()
|
|
||||||
.archive_serial_number
|
|
||||||
or 0
|
|
||||||
)
|
|
||||||
+ 1,
|
|
||||||
)
|
)
|
||||||
|
return Response(max_asn + 1)
|
||||||
|
|
||||||
|
|
||||||
class LogViewSet(ViewSet):
|
class LogViewSet(ViewSet):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user