From 5cf1f437df7a7136bef282a60b65e08c02174533 Mon Sep 17 00:00:00 2001 From: youjie <272855983@qq.com> Date: Tue, 4 Jun 2024 10:16:58 +0800 Subject: [PATCH] 平库出入库 --- ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue b/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue index b07340a..8f8a960 100644 --- a/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue +++ b/ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue @@ -39,8 +39,8 @@ <li> <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> <a-button type="primary" @click="search()" icon="search" style="margin-left: 8px;">查询</a-button> - <a-button @click='expressDelivery()' v-if="expressDeliveryVisible" type='primary' style="margin-left: 8px;">快速出库</a-button> - <a-button @click="expressStorage()" type="primary" v-if="expressStorageVisible" style="margin-left: 8px;">快速入库</a-button> + <a-button @click='expressDelivery()' v-if="expressDeliveryVisible" type='primary' style="margin-left: 8px;">平库出库</a-button> + <a-button @click="expressStorage()" type="primary" v-if="expressStorageVisible" style="margin-left: 8px;">平库入库</a-button> </span> </li> </ul> @@ -284,7 +284,7 @@ export default { for (let i of newArr) { let param = { materialCode: i.materialCode, - shipQty: i.qty, + shipQty: 0, inventoryDetailId: i.id, containerCode: i.containerCode } @@ -303,10 +303,16 @@ export default { // 显示快速出库 revealExpressDelivery(code, materialCode) { this.expressDeliveryVisible = !!materialCode; + if (this.zoneCode != 'P') { + this.expressDeliveryVisible = false; + } }, // 显示快速入库 revealExpressStorage(code) { this.expressStorageVisible = !!code; + if (this.zoneCode != 'P') { + this.expressStorageVisible = false; + } }, //关闭tips mClose(x) { -- libgit2 0.22.2