From e3cd63f449083041cbe950690f428b7108e4f6e2 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期五, 19 四月 2024 14:30:18 +0800 Subject: [PATCH] 辅助数量,数量和设置多单位的数量计算公式修改 --- src/views/overview/OverviewListView.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/overview/OverviewListView.vue b/src/views/overview/OverviewListView.vue index 177b5e5..a7a79f4 100644 --- a/src/views/overview/OverviewListView.vue +++ b/src/views/overview/OverviewListView.vue @@ -393,10 +393,10 @@ toLocation: arr.toLocation.name, adjunctUnit:item.auxiliaryUnit, adjunctAmount:item.auxiliaryAmount, - grossWeight:item.product.grossWeight, - totalGrossWeight:item.totalGrossWeight, - netWeight:item.product.netWeight, - totalNetWeight:item.totalNetWeight, + grossWeight:item.product.grossWeight==0?'':item.product.grossWeight, + totalGrossWeight:item.totalGrossWeight==0?'':item.totalGrossWeight, + netWeight:item.product.netWeight==0?'':item.product.netWeight, + totalNetWeight:item.totalNetWeight==0?'':item.totalNetWeight, } }) this.productTableList.tableInfomation = list -- Gitblit v1.8.0