mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
74 lines
1.6 KiB
Python
74 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
import plugin.models as models
|
|
import plugin.registry as pl_registry
|
|
|
|
|
|
def plugin_update(queryset, new_status: bool):
|
|
"""
|
|
General function for bulk changing plugins
|
|
"""
|
|
|
|
apps_changed = False
|
|
|
|
# Run through all plugins in the queryset as the save method needs to be overridden
|
|
for plugin in queryset:
|
|
if plugin.active is not new_status:
|
|
plugin.active = new_status
|
|
plugin.save(no_reload=True)
|
|
apps_changed = True
|
|
|
|
# Reload plugins if they changed
|
|
if apps_changed:
|
|
pl_registry.reload_plugins()
|
|
|
|
|
|
@admin.action(description='Activate plugin(s)')
|
|
def plugin_activate(modeladmin, request, queryset):
|
|
"""
|
|
Activate a set of plugins
|
|
"""
|
|
plugin_update(queryset, True)
|
|
|
|
|
|
@admin.action(description='Deactivate plugin(s)')
|
|
def plugin_deactivate(modeladmin, request, queryset):
|
|
"""
|
|
Deactivate a set of plugins
|
|
"""
|
|
|
|
plugin_update(queryset, False)
|
|
|
|
|
|
class PluginSettingInline(admin.TabularInline):
|
|
"""
|
|
Inline admin class for PluginSetting
|
|
"""
|
|
|
|
model = models.PluginSetting
|
|
|
|
read_only_fields = [
|
|
'key',
|
|
]
|
|
|
|
def has_add_permission(self, request, obj):
|
|
return False
|
|
|
|
|
|
class PluginConfigAdmin(admin.ModelAdmin):
|
|
"""
|
|
Custom admin with restricted id fields
|
|
"""
|
|
|
|
readonly_fields = ["key", "name", ]
|
|
list_display = ['name', 'key', '__str__', 'active', ]
|
|
list_filter = ['active']
|
|
actions = [plugin_activate, plugin_deactivate, ]
|
|
inlines = [PluginSettingInline, ]
|
|
|
|
|
|
admin.site.register(models.PluginConfig, PluginConfigAdmin)
|