mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
codestyle
This commit is contained in:
parent
b1110f7291
commit
81aaadb2a3
@ -138,7 +138,7 @@ class DocumentViewSet(RetrieveModelMixin,
|
|||||||
def file_response(self, pk, request, disposition):
|
def file_response(self, pk, request, disposition):
|
||||||
doc = Document.objects.get(id=pk)
|
doc = Document.objects.get(id=pk)
|
||||||
mime_type = doc.mime_type
|
mime_type = doc.mime_type
|
||||||
if not self.original_requested(request) and os.path.isfile(doc.archive_path):
|
if not self.original_requested(request) and os.path.isfile(doc.archive_path): # NOQA: E501
|
||||||
file_handle = doc.archive_file
|
file_handle = doc.archive_file
|
||||||
mime_type = 'application/pdf'
|
mime_type = 'application/pdf'
|
||||||
elif doc.storage_type == Document.STORAGE_TYPE_UNENCRYPTED:
|
elif doc.storage_type == Document.STORAGE_TYPE_UNENCRYPTED:
|
||||||
@ -169,7 +169,8 @@ class DocumentViewSet(RetrieveModelMixin,
|
|||||||
"paperless__checksum": doc.checksum,
|
"paperless__checksum": doc.checksum,
|
||||||
"paperless__mime_type": doc.mime_type,
|
"paperless__mime_type": doc.mime_type,
|
||||||
"paperless__filename": doc.filename,
|
"paperless__filename": doc.filename,
|
||||||
"paperless__has_archive_version": os.path.isfile(doc.archive_path)
|
"paperless__has_archive_version":
|
||||||
|
os.path.isfile(doc.archive_path)
|
||||||
})
|
})
|
||||||
except Document.DoesNotExist:
|
except Document.DoesNotExist:
|
||||||
raise Http404()
|
raise Http404()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user