From d6d4d1342d8f6211e7035d6a562dc9f7dced1bea Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期五, 19 四月 2024 16:41:26 +0800 Subject: [PATCH] 入库,出库,调拨,出入库明细 4个模块增加已经添加过的产品不可以再次选择 --- src/views/overview/OverviewListView.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/overview/OverviewListView.vue b/src/views/overview/OverviewListView.vue index ef84b5c..a7a79f4 100644 --- a/src/views/overview/OverviewListView.vue +++ b/src/views/overview/OverviewListView.vue @@ -394,9 +394,9 @@ adjunctUnit:item.auxiliaryUnit, adjunctAmount:item.auxiliaryAmount, grossWeight:item.product.grossWeight==0?'':item.product.grossWeight, - totalGrossWeight:item.totalGrossWeight, + totalGrossWeight:item.totalGrossWeight==0?'':item.totalGrossWeight, netWeight:item.product.netWeight==0?'':item.product.netWeight, - totalNetWeight:item.totalNetWeight, + totalNetWeight:item.totalNetWeight==0?'':item.totalNetWeight, } }) this.productTableList.tableInfomation = list -- Gitblit v1.8.0