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>
36 lines
974 B
Python
36 lines
974 B
Python
from __future__ import unicode_literals
|
|
|
|
import logging
|
|
|
|
from django.apps import apps
|
|
|
|
from mayan.apps.document_indexing.tasks import task_index_document
|
|
|
|
from .settings import setting_auto_ocr
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def handler_index_document(sender, **kwargs):
|
|
task_index_document.apply_async(
|
|
kwargs=dict(document_id=kwargs['instance'].document.pk)
|
|
)
|
|
|
|
|
|
def handler_initialize_new_ocr_settings(sender, instance, **kwargs):
|
|
DocumentTypeSettings = apps.get_model(
|
|
app_label='ocr', model_name='DocumentTypeSettings'
|
|
)
|
|
|
|
if kwargs['created']:
|
|
DocumentTypeSettings.objects.create(
|
|
document_type=instance, auto_ocr=setting_auto_ocr.value
|
|
)
|
|
|
|
|
|
def handler_ocr_document_version(sender, instance, **kwargs):
|
|
logger.debug('received post_version_upload')
|
|
logger.debug('instance pk: %s', instance.pk)
|
|
if instance.document.document_type.ocr_settings.auto_ocr:
|
|
instance.submit_for_ocr()
|