From 8818f234b5e4563aac5e629c04e37d81c932e4f9 Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期四, 14 十二月 2023 22:17:59 +0800 Subject: [PATCH] modified: src/api/quality/finishedProduct.js modified: src/api/quality/processInspect.js modified: src/api/quality/rawMaterial.js modified: src/views/product/workbench/taskinfo-pane.vue modified: src/views/quality/Packaging_ledger/pack-from.vue modified: src/views/quality/finishedProductInspection/finishedProduct-form.vue modified: src/views/quality/packageinspect/packageInspect-form.vue modified: src/views/quality/processInspect/index.vue modified: src/views/quality/processInspect/processInspect-form.vue modified: src/views/quality/rawMaterial/rawMaterial-form.vue --- src/views/quality/processInspect/processInspect-form.vue | 72 ++++++++++++++++++++++++++++------- 1 files changed, 57 insertions(+), 15 deletions(-) diff --git a/src/views/quality/processInspect/processInspect-form.vue b/src/views/quality/processInspect/processInspect-form.vue index 31f055e..239b2bc 100644 --- a/src/views/quality/processInspect/processInspect-form.vue +++ b/src/views/quality/processInspect/processInspect-form.vue @@ -264,11 +264,12 @@ mounted() { this.getDeviceList() this.processInspectVo.id = this.$route.query.id - this.resultVal = this.$route.query.resultVal + this.resultVal = this.$route.params.resultVal if (this.resultVal == null) { let val = sessionStorage.getItem("process-resultVal-" + this.processInspectVo.id); val == undefined ? this.resultVal = null : this.resultVal = val } + console.log(this.resultVal); this.init() }, methods: { @@ -282,6 +283,11 @@ pro += arr.length } }) + let obj = { + id: this.processInspectVo.id, + number: 0, + result: this.inspectionResultForm[0].result + } if (pro > 0) { this.$prompt('璇疯緭鍏ヤ笉鍚堟牸鏁伴噺', '涓嶅悎鏍兼暟閲�', { confirmButtonText: '纭畾', @@ -289,11 +295,8 @@ inputPattern: /^\d+$/, inputErrorMessage: '璇疯緭鍏ユ纭暟瀛楁牸寮�' }).then(({ value }) => { - let data = { - id: this.processInspectVo.id, - number: value - } - updateProcessInspectsById(data).then(res => { + obj.number = value + updateProcessInspectsById(obj).then(res => { let data = res.data.data if (data) { if (data.indexOf("鎴愬姛") > 0) { @@ -307,7 +310,7 @@ }); }).catch(() => { }); } else { - updateProcessInspectsById({ id: this.processInspectVo.id, number: 0 }).then(res => { + updateProcessInspectsById(obj).then(res => { let data = res.data.data if (data) { if (data.indexOf("鎴愬姛") > 0) { @@ -373,11 +376,21 @@ } }) this.inspectionItems = result.children + let rVal = '1' + this.inspectionItems.forEach(item => { + if (item.children) { + item.children.forEach(obj => { + if (obj.iresult == 0) { + rVal = '0' + } + }) + } + }) this.inspectionResultForm = [{ materialCode: result.materialCode, material: result.material, userName: Array.from(new Set(userList)).join(","), - result: this.resultVal == null ? '' : this.resultVal, + result: this.resultVal == null ? rVal : this.resultVal, }] }).catch(error => { console.log(error) @@ -418,7 +431,6 @@ this.technologyList = sample.children }, changeState(row,isChecked) { - console.log(row); const _than = this if(isChecked){ let isNumber = true @@ -443,7 +455,6 @@ if (str === undefined || str === '' || str === null) { return } - let obj = { devideId: row.eId, ppid: row.iid, @@ -510,14 +521,45 @@ } }) }, + changeRowResult(){ + if(this.inspectionItems){ + this.inspectionItems.forEach(e=>{ + if(e.children){ + e.children.forEach(i=>{ + if(i.empiricalValueAddss.length>1){ + let arr = i.inspectionValue.split(",") + arr.splice((arr.length-1),1) + let obj = { + devideId: i.eId, + ppid: i.iid, + inspectionValue: arr.join(","), + note : i.inote + } + updateProcessInsProduct(obj).then(res => { + if (res.data.code == 0) { + this.init() + } + }) + } + }) + } + }) + } + }, // 鍒犻櫎妫�楠屽�煎垪 clickDeleteInspectionColumn() { - if (this.empiricalValueAdd - 1 === 0) { + const _than = this + if (_than.empiricalValueAdd - 1 === 0) { } else { - if (this.empiricalValueAddMaxNumber != this.empiricalValueAdd - 1) { - this.empiricalValueAdd = this.empiricalValueAdd - 1; - this.inspectionItems.forEach(i => { - i.empiricalValueAddss.splice(this.empiricalValueAdd, 1); + if (_than.empiricalValueAddMaxNumber != _than.empiricalValueAdd - 1) { + _than.empiricalValueAdd = _than.empiricalValueAdd - 1; + _than.changeRowResult() + _than.inspectionItems.forEach(i => { + if(i.children){ + i.children.forEach(ele=>{ + ele.empiricalValueAddss.splice(_than.empiricalValueAdd, 1); + }) + } }); } } -- Gitblit v1.9.3