Files
mayan-edms/mayan/apps/document_parsing/handlers.py
Roberto Rosario 36a51eeb73 Switch to full app paths
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>
2019-04-05 02:02:57 -04:00

34 lines
919 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_parsing
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_parsing_settings(sender, instance, **kwargs):
DocumentTypeSettings = apps.get_model(
app_label='document_parsing', model_name='DocumentTypeSettings'
)
if kwargs['created']:
DocumentTypeSettings.objects.create(
document_type=instance, auto_parsing=setting_auto_parsing.value
)
def handler_parse_document_version(sender, instance, **kwargs):
if instance.document.document_type.parsing_settings.auto_parsing:
instance.submit_for_parsing()