From f22e264b6c282f597a139f549025cb9120fe0da1 Mon Sep 17 00:00:00 2001 From: wk Date: 星期三, 23 十月 2024 09:49:06 +0800 Subject: [PATCH] feat:临时入场 --- subPages/addDailyPlan/addDailyPlan.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subPages/addDailyPlan/addDailyPlan.vue b/subPages/addDailyPlan/addDailyPlan.vue index c94c359..e416afa 100644 --- a/subPages/addDailyPlan/addDailyPlan.vue +++ b/subPages/addDailyPlan/addDailyPlan.vue @@ -298,7 +298,7 @@ if(this.isNumOk){ let tempArr = []; this.subDataList.forEach(item=>{ - tempArr.push(item.productId + ':' + item.quant); + tempArr.push(item.productId + ':' + item.surplusQuant); this.isWeighing = item.isWeight; this.orderType = item.orderType; }) @@ -315,7 +315,7 @@ confirmBuild() { let tempArr = []; this.subDataList.forEach(item=>{ - tempArr.push(item.productId + ':' + item.quant); + tempArr.push(item.productId + ':' + item.surplusQuant); }) this.mapProductNum = tempArr.join(",") let form = { -- Gitblit v1.9.1