Browse Source

修改IQC任务 检验单 应用后 合格数量 不合格数量不对bug

java8
赵宏斌 4 months ago
parent
commit
900e9d7c00
  1. 15
      src/views/modules/qc/IQCResultEntry.vue

15
src/views/modules/qc/IQCResultEntry.vue

@ -2672,12 +2672,15 @@
this.detailData.responsiblePersonName = row.responsiblePersonName
this.detailData.invdefinetype = row.invdefinetype
this.detailData.state = row.state
if (row.state === '待检验') {
this.detailData.passQty = row.samplingQty
} else {
this.detailData.passQty = row.passQty
this.detailData.notPassQty = row.notPassQty
}
// if (row.state === '') {
// this.detailData.passQty = row.samplingQty
// } else {
// this.detailData.passQty = row.passQty
// this.detailData.notPassQty = row.notPassQty
// }
//2025/9/8
this.detailData.passQty = row.passQty
this.detailData.notPassQty = row.notPassQty
this.detailData.batchQualifiedQty = row.batchQualifiedQty
this.getInspectionFormData()
this.inspectorSearch()

Loading…
Cancel
Save