diff --git a/jshERP-web/src/views/system/SystemConfigList.vue b/jshERP-web/src/views/system/SystemConfigList.vue index b26827f4..d22301be 100644 --- a/jshERP-web/src/views/system/SystemConfigList.vue +++ b/jshERP-web/src/views/system/SystemConfigList.vue @@ -293,11 +293,19 @@ } } }) - //校验是否存在生产插件 - getAction('/plugin/checkByPluginId', { pluginIds: 'produce' }).then((res)=> { + //校验是否存在盘点插件 + getAction('/plugin/checkByPluginId', { pluginIds: 'stock-check' }).then((res)=> { if (res.code === 200) { if(res.data) { - this.billTypeList.push({ 'key': 'SC', 'value': '生产任务' }, { 'key': 'WW', 'value': '委外任务' }) + this.billTypeList.push({ 'key': 'PDLR', 'value': '盘点录入' }, { 'key': 'PDFP', 'value': '盘点复盘' }) + //校验是否存在生产插件 + getAction('/plugin/checkByPluginId', { pluginIds: 'produce' }).then((res)=> { + if (res.code === 200) { + if(res.data) { + this.billTypeList.push({ 'key': 'SC', 'value': '生产任务' }, { 'key': 'WW', 'value': '委外任务' }) + } + } + }) } } })