Instead of inserting the path of the apps into the Python app, the apps are now referenced by their full import path. This app name claves 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>
133 lines
4.3 KiB
Python
133 lines
4.3 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.acls import ModelPermission
|
|
from mayan.apps.acls.permissions import permission_acl_edit, permission_acl_view
|
|
from mayan.apps.common import (
|
|
MayanAppConfig, menu_facet, menu_main, menu_multi_item, menu_object,
|
|
menu_sidebar
|
|
)
|
|
from mayan.apps.documents.search import document_page_search, document_search
|
|
from mayan.apps.navigation import SourceColumn
|
|
|
|
from .links import (
|
|
link_cabinet_list, link_document_cabinet_list,
|
|
link_document_cabinet_remove, link_cabinet_add_document,
|
|
link_cabinet_add_multiple_documents, link_cabinet_child_add,
|
|
link_cabinet_create, link_cabinet_delete, link_cabinet_edit,
|
|
link_cabinet_view, link_custom_acl_list,
|
|
link_multiple_document_cabinet_remove
|
|
)
|
|
from .menus import menu_cabinets
|
|
from .permissions import (
|
|
permission_cabinet_add_document, permission_cabinet_delete,
|
|
permission_cabinet_edit, permission_cabinet_remove_document,
|
|
permission_cabinet_view
|
|
)
|
|
from .widgets import widget_document_cabinets
|
|
|
|
|
|
class CabinetsApp(MayanAppConfig):
|
|
app_namespace = 'cabinets'
|
|
app_url = 'cabinets'
|
|
has_rest_api = True
|
|
has_tests = True
|
|
name = 'mayan.apps.cabinets'
|
|
verbose_name = _('Cabinets')
|
|
|
|
def ready(self):
|
|
super(CabinetsApp, self).ready()
|
|
from actstream import registry
|
|
from .wizard_steps import WizardStepCabinets # NOQA
|
|
|
|
Document = apps.get_model(
|
|
app_label='documents', model_name='Document'
|
|
)
|
|
|
|
DocumentCabinet = self.get_model('DocumentCabinet')
|
|
Cabinet = self.get_model('Cabinet')
|
|
|
|
# Add explicit order_by as DocumentCabinet ordering Meta option has no
|
|
# effect.
|
|
Document.add_to_class(
|
|
'document_cabinets',
|
|
lambda document: DocumentCabinet.objects.filter(documents=document).order_by('parent__label', 'label')
|
|
)
|
|
|
|
ModelPermission.register(
|
|
model=Document, permissions=(
|
|
permission_cabinet_add_document,
|
|
permission_cabinet_remove_document
|
|
)
|
|
)
|
|
|
|
ModelPermission.register(
|
|
model=Cabinet, permissions=(
|
|
permission_acl_edit, permission_acl_view,
|
|
permission_cabinet_delete, permission_cabinet_edit,
|
|
permission_cabinet_view, permission_cabinet_add_document,
|
|
permission_cabinet_remove_document
|
|
)
|
|
)
|
|
ModelPermission.register_inheritance(
|
|
model=Cabinet, related='get_root',
|
|
)
|
|
|
|
SourceColumn(
|
|
source=Document, label=_('Cabinets'),
|
|
func=lambda context: widget_document_cabinets(
|
|
document=context['object'], user=context['request'].user
|
|
), order=1
|
|
)
|
|
|
|
document_page_search.add_model_field(
|
|
field='document_version__document__cabinets__label',
|
|
label=_('Cabinets')
|
|
)
|
|
document_search.add_model_field(
|
|
field='cabinets__label', label=_('Cabinets')
|
|
)
|
|
|
|
menu_facet.bind_links(
|
|
links=(link_document_cabinet_list,), sources=(Document,)
|
|
)
|
|
|
|
menu_cabinets.bind_links(
|
|
links=(
|
|
link_cabinet_list, link_cabinet_create
|
|
)
|
|
)
|
|
|
|
menu_main.bind_links(links=(menu_cabinets,), position=98)
|
|
|
|
menu_multi_item.bind_links(
|
|
links=(
|
|
link_cabinet_add_multiple_documents,
|
|
link_multiple_document_cabinet_remove
|
|
), sources=(Document,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_cabinet_view,
|
|
), sources=(DocumentCabinet, )
|
|
)
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_cabinet_view, link_cabinet_edit,
|
|
link_custom_acl_list, link_cabinet_child_add,
|
|
link_cabinet_delete
|
|
), sources=(Cabinet,)
|
|
)
|
|
menu_sidebar.bind_links(
|
|
links=(link_cabinet_add_document, link_document_cabinet_remove),
|
|
sources=(
|
|
'cabinets:document_cabinet_list',
|
|
'cabinets:cabinet_add_document',
|
|
'cabinets:document_cabinet_remove'
|
|
)
|
|
)
|
|
|
|
registry.register(Cabinet)
|