From da0f78d62a9373c6e28f9a2295cb603d6ceb4ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Fri, 5 May 2023 00:08:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=99=E7=B3=BB=E7=BB=9F=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=87=8C=E9=9D=A2=E7=9A=84=E5=A4=9A=E7=BA=A7=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=8B=E6=8B=89=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/system/SystemConfigList.vue | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) 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': '委外任务' }) + } + } + }) } } })