2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 03:56:43 +00:00

Show built in label printing plugin even if the external plugins are disabled (#5304)

This commit is contained in:
Miklós Márton 2023-07-21 13:55:51 +02:00 committed by GitHub
parent 45aa8c39b3
commit 6b4717cb28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,6 @@
modalShowSubmitButton, modalShowSubmitButton,
modalSubmit, modalSubmit,
openModal, openModal,
plugins_enabled,
showAlertDialog, showAlertDialog,
showMessage, showMessage,
user_settings, user_settings,
@ -34,7 +33,6 @@ function selectLabel(labels, items, options={}) {
var plugins = []; var plugins = [];
// Request a list of available label printing plugins from the server // Request a list of available label printing plugins from the server
if (plugins_enabled) {
inventreeGet( inventreeGet(
`/api/plugins/`, `/api/plugins/`,
{ {
@ -47,11 +45,10 @@ function selectLabel(labels, items, options={}) {
} }
} }
); );
}
var plugin_selection = ''; var plugin_selection = '';
if (plugins_enabled && plugins.length > 0) { if (plugins.length > 0) {
plugin_selection =` plugin_selection =`
<div class='form-group'> <div class='form-group'>
<label class='control-label requiredField' for='id_plugin'> <label class='control-label requiredField' for='id_plugin'>