Files
mayan-edms/mayan/apps/control_codes/handlers.py
Roberto Rosario f9ba08ee59 Add control code preview generation
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-09-01 14:35:04 -04:00

22 lines
668 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.control_codes_settings.auto_process:
instance.submit_for_control_codes_processing()