diff --git a/InvenTree/plugin/builtin/barcodes/inventree_barcode.py b/InvenTree/plugin/builtin/barcodes/inventree_barcode.py index a1ce846c3c..a708a46f71 100644 --- a/InvenTree/plugin/builtin/barcodes/inventree_barcode.py +++ b/InvenTree/plugin/builtin/barcodes/inventree_barcode.py @@ -19,8 +19,14 @@ from plugin.mixins import BarcodeMixin from stock.models import StockItem, StockLocation -class InvenTreeBarcodePlugin(BarcodeMixin, InvenTreePlugin): - """Generic base class for handling InvenTree barcodes""" +class InvenTreeInternalBarcodePlugin(BarcodeMixin, InvenTreePlugin): + """Builtin BarcodePlugin for matching and generating internal barcodes.""" + + NAME = "InvenTreeInternalBarcode" + TITLE = _("Inventree Barcodes") + DESCRIPTION = _("Provides native support for barcodes") + VERSION = "2.0" + AUTHOR = _("InvenTree contributors") @staticmethod def get_supported_barcode_models(): @@ -60,16 +66,6 @@ class InvenTreeBarcodePlugin(BarcodeMixin, InvenTreePlugin): return response - -class InvenTreeInternalBarcodePlugin(InvenTreeBarcodePlugin): - """Builtin BarcodePlugin for matching and generating internal barcodes.""" - - NAME = "InvenTreeInternalBarcode" - TITLE = _("Inventree Barcodes") - DESCRIPTION = _("Provides native support for barcodes") - VERSION = "2.0" - AUTHOR = _("InvenTree contributors") - def scan(self, barcode_data): """Scan a barcode against this plugin. diff --git a/InvenTree/plugin/builtin/integration/core_notifications.py b/InvenTree/plugin/builtin/integration/core_notifications.py index b94a296168..977e64dcfb 100644 --- a/InvenTree/plugin/builtin/integration/core_notifications.py +++ b/InvenTree/plugin/builtin/integration/core_notifications.py @@ -30,7 +30,7 @@ class CoreNotificationsPlugin(SettingsMixin, InvenTreePlugin): TITLE = _("InvenTree Notifications") AUTHOR = _('InvenTree contributors') DESCRIPTION = _('Integrated outgoing notificaton methods') - VERSION = "0.1" + VERSION = "1.0" SETTINGS = { 'ENABLE_NOTIFICATION_EMAILS': { diff --git a/InvenTree/templates/InvenTree/settings/plugin_settings.html b/InvenTree/templates/InvenTree/settings/plugin_settings.html index ee17a953c7..1994ac872a 100644 --- a/InvenTree/templates/InvenTree/settings/plugin_settings.html +++ b/InvenTree/templates/InvenTree/settings/plugin_settings.html @@ -23,16 +23,16 @@