diff --git a/InvenTree/plugin/models.py b/InvenTree/plugin/models.py index 30735e7510..d6fd71d7c4 100644 --- a/InvenTree/plugin/models.py +++ b/InvenTree/plugin/models.py @@ -124,6 +124,12 @@ class PluginSetting(common.models.BaseInvenTreeSetting): so that we can pass the plugin instance """ + def is_bool(self, **kwargs): + + kwargs['plugin'] = self.plugin + + return super().is_bool(**kwargs) + @property def name(self): return self.__class__.get_setting_name(self.key, plugin=self.plugin)