diff --git a/src/views/modules/qc/IQCResultEntry.vue b/src/views/modules/qc/IQCResultEntry.vue index d75a006..02165d3 100644 --- a/src/views/modules/qc/IQCResultEntry.vue +++ b/src/views/modules/qc/IQCResultEntry.vue @@ -38,9 +38,9 @@ - - - + + + @@ -52,44 +52,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -100,7 +62,46 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 查询 审核 取消审核 @@ -1052,24 +1053,24 @@ fixed: '', columnWidth: 100, }, - { - userId: this.$store.state.user.name, - functionId: 301006, - serialNumber: '301006Table1RollNo', - tableId: "301006Table1", - tableName: "IQC检验记录表", - columnProp: 'rollNo', - headerAlign: "center", - align: "center", - columnLabel: '标签条码', - columnHidden: false, - columnImage: false, - columnSortable: false, - sortLv: 0, - status: true, - fixed: '', - columnWidth: 120, - }, + // { + // userId: this.$store.state.user.name, + // functionId: 301006, + // serialNumber: '301006Table1RollNo', + // tableId: "301006Table1", + // tableName: "IQC检验记录表", + // columnProp: 'rollNo', + // headerAlign: "center", + // align: "center", + // columnLabel: '标签条码', + // columnHidden: false, + // columnImage: false, + // columnSortable: false, + // sortLv: 0, + // status: true, + // fixed: '', + // columnWidth: 120, + // }, { userId: this.$store.state.user.name, functionId: 301006, @@ -2830,13 +2831,15 @@ //2025/9/8 海波更改 合格数量 不合格数量 this.detailData.passQty = row.passQty this.detailData.notPassQty = row.notPassQty - this.detailData.batchQualifiedQty = row.batchQualifiedQty - this.detailData.noBatchQualifiedQty = this.detailData.rollQty - row.batchQualifiedQty + //如果没有保存过久给默认值 默认全部通过 if (row.state === '待检验'&&row.batchQualifiedQty===null) { this.detailData.inspectionResult='合格' this.detailData.batchQualifiedQty =this.detailData.rollQty this.detailData.rollCount=this.detailData.rollQty + }else { + this.detailData.batchQualifiedQty = row.batchQualifiedQty + this.detailData.noBatchQualifiedQty = this.detailData.rollQty - row.batchQualifiedQty } this.getInspectionFormData() this.inspectorSearch()