Add support for new document page structure
Documents now have their own dedicated DocumentPage submodel. The old DocumentPage is now called DocumentVersionPage. This allows mappings between document pages and document version pages, allowing renumbering, appending pages. DocumentPages have a content_object to map them to any other object. For now they only map to DocumentVersionPages. New option added to the version upload form to append the pages of the new version. A new view was added to just append new pages with wraps the new document version upload form and hides the append pages checkbox set to True. Add a new action, reset_pages to reset the pages of the document to those of the latest version. Missing: appending tests, checks for proper content_object in OCR and document parsing. Author: Roberto Rosario <roberto.rosario@mayan-edms.com> Date: Thu Oct 11 12:00:25 2019 -0400
This commit is contained in:
@@ -6,14 +6,28 @@ from django.utils.html import conditional_escape
|
||||
|
||||
|
||||
def get_document_content(document):
|
||||
DocumentPageContent = apps.get_model(
|
||||
app_label='document_parsing', model_name='DocumentPageContent'
|
||||
DocumentVersionPageContent = apps.get_model(
|
||||
app_label='document_parsing', model_name='DocumentVersionPageContent'
|
||||
)
|
||||
|
||||
for page in document.pages.all():
|
||||
for document_page in document.pages.all():
|
||||
try:
|
||||
page_content = page.content.content
|
||||
except DocumentPageContent.DoesNotExist:
|
||||
page_content = document_page.content_object.content.content
|
||||
except DocumentVersionPageContent.DoesNotExist:
|
||||
pass
|
||||
else:
|
||||
yield conditional_escape(force_text(page_content))
|
||||
|
||||
|
||||
def get_document_version_content(document_version):
|
||||
DocumentVersionPageContent = apps.get_model(
|
||||
app_label='document_parsing', model_name='DocumentVersionPageContent'
|
||||
)
|
||||
|
||||
for document_version_page in document_version.pages.all():
|
||||
try:
|
||||
page_content = document_version_page.content.content
|
||||
except DocumentVersionPageContent.DoesNotExist:
|
||||
pass
|
||||
else:
|
||||
yield conditional_escape(force_text(page_content))
|
||||
|
||||
Reference in New Issue
Block a user