Files
mayan-edms/mayan/apps/file_metadata/handlers.py
Roberto Rosario 21c1dc36d8 Add file metadata app
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2019-04-24 04:54:07 -04:00

22 lines
670 B
Python

from __future__ import unicode_literals
from django.apps import apps
from .settings import setting_auto_process
def handler_initialize_new_document_type_settings(sender, instance, **kwargs):
DocumentTypeSettings = apps.get_model(
app_label='file_metadata', model_name='DocumentTypeSettings'
)
if kwargs['created']:
DocumentTypeSettings.objects.create(
auto_process=setting_auto_process.value, document_type=instance
)
def handler_process_document_version(sender, instance, **kwargs):
if instance.document.document_type.file_metadata_settings.auto_process:
instance.submit_for_file_metadata_processing()