Instead of inserting the path of the apps into the Python app, the apps are now referenced by their full import path. This solves name clashes with external or native Python libraries. Example: Mayan statistics app vs. Python new statistics library. Every app reference is now prepended with 'mayan.apps'. Existing config.yml files need to be updated manually. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
77 lines
2.4 KiB
Python
77 lines
2.4 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import models
|
|
from django.utils.encoding import force_text, python_2_unicode_compatible
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.documents.models import (
|
|
DocumentPage, DocumentType, DocumentVersion
|
|
)
|
|
|
|
from .managers import DocumentPageContentManager, DocumentTypeSettingsManager
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
class DocumentPageContent(models.Model):
|
|
document_page = models.OneToOneField(
|
|
on_delete=models.CASCADE, related_name='content', to=DocumentPage,
|
|
verbose_name=_('Document page')
|
|
)
|
|
content = models.TextField(
|
|
blank=True, help_text=_(
|
|
'The actual text content as extracted by the document '
|
|
'parsing backend.'
|
|
), verbose_name=_('Content')
|
|
)
|
|
|
|
objects = DocumentPageContentManager()
|
|
|
|
class Meta:
|
|
verbose_name = _('Document page content')
|
|
verbose_name_plural = _('Document pages contents')
|
|
|
|
def __str__(self):
|
|
return force_text(self.document_page)
|
|
|
|
|
|
class DocumentTypeSettings(models.Model):
|
|
document_type = models.OneToOneField(
|
|
on_delete=models.CASCADE, related_name='parsing_settings',
|
|
to=DocumentType, unique=True, verbose_name=_('Document type')
|
|
)
|
|
auto_parsing = models.BooleanField(
|
|
default=True, verbose_name=_(
|
|
'Automatically queue newly created documents for parsing.'
|
|
)
|
|
)
|
|
|
|
objects = DocumentTypeSettingsManager()
|
|
|
|
def natural_key(self):
|
|
return self.document_type.natural_key()
|
|
natural_key.dependencies = ['documents.DocumentType']
|
|
|
|
class Meta:
|
|
verbose_name = _('Document type settings')
|
|
verbose_name_plural = _('Document types settings')
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
class DocumentVersionParseError(models.Model):
|
|
document_version = models.ForeignKey(
|
|
on_delete=models.CASCADE, related_name='parsing_errors',
|
|
to=DocumentVersion, verbose_name=_('Document version')
|
|
)
|
|
datetime_submitted = models.DateTimeField(
|
|
auto_now_add=True, db_index=True, verbose_name=_('Date time submitted')
|
|
)
|
|
result = models.TextField(blank=True, null=True, verbose_name=_('Result'))
|
|
|
|
class Meta:
|
|
ordering = ('datetime_submitted',)
|
|
verbose_name = _('Document version parse error')
|
|
verbose_name_plural = _('Document version parse errors')
|
|
|
|
def __str__(self):
|
|
return force_text(self.document_version)
|