From cb4154a247c5edb8aacba0a6732df5383f9827cc Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Fri, 17 Mar 2023 18:06:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8A=A5=E5=BA=9F=E9=87=91?= =?UTF-8?q?=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../form/ProcessSmaterialsScrapForm.vue | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/views/activiti/form/ProcessSmaterialsScrapForm.vue b/src/views/activiti/form/ProcessSmaterialsScrapForm.vue index b4d8941..4331eaf 100644 --- a/src/views/activiti/form/ProcessSmaterialsScrapForm.vue +++ b/src/views/activiti/form/ProcessSmaterialsScrapForm.vue @@ -484,7 +484,6 @@ async onSelect(record){ //物料号 if(record.column.key == "equipment" && !!record.row.id || record.column.key == "materialName" && !!record.row.id ){ - console.log("--",record) await this.pastSla(); let l = false; this.historyNumList.forEach( item =>{ @@ -503,16 +502,25 @@ sous = true; } }) - console.log("11111111111") if(!sous){ - console.log("22222222") await this.searchInformation(record.value); } - console.log("333333") this.fuZhi(record.row.id,record.value); } await this.jinYong(); - + } + //计算金额 + if(record.column.key = "materialAmount" && !!record.row.scrapNumber && this.disabled){ + let values = [ + { + rowKey: record.row.id, + values: { + // 'scrapNumber': record.row.scrapNumber > 0 ? record.row.scrapNumber : 1 , + 'materialAmount': accMul(record.row.materialAmount,record.row.materialPrice) > 0 ? accMul(record.row.materialAmount,record.row.materialPrice) : 1 * record.row.materialPrice, + } + } + ] + this.$refs.processSmaterialsScrapList.setValues(values); }