diff --git a/src/views/modules/common/Chooselist_eam.vue b/src/views/modules/common/Chooselist_eam.vue
index 24797f4..2c036a4 100644
--- a/src/views/modules/common/Chooselist_eam.vue
+++ b/src/views/modules/common/Chooselist_eam.vue
@@ -84,7 +84,7 @@ export default {
param3: '',
param4: '',
param5: '',
- param6: '',
+ param6: 'Y',
param7: this.$store.state.user.name,
param: '',
conSql: '',
diff --git a/src/views/modules/product/operatorGroup.vue b/src/views/modules/product/operatorGroup.vue
index 96b738f..e0674a4 100644
--- a/src/views/modules/product/operatorGroup.vue
+++ b/src/views/modules/product/operatorGroup.vue
@@ -219,7 +219,8 @@
style="width: 100px; height: 80px"/>
@@ -594,7 +595,6 @@
getOperatorGroupDefault(this.currentRow).then(({data}) => {
if (data && data.code === 0) {
this.detailList=data.rows
-
}
})
},
diff --git a/src/views/modules/qc/FAIResultEntry.vue b/src/views/modules/qc/FAIResultEntry.vue
index b05d061..22d2dba 100644
--- a/src/views/modules/qc/FAIResultEntry.vue
+++ b/src/views/modules/qc/FAIResultEntry.vue
@@ -3307,17 +3307,20 @@
actionBy: this.$store.state.user.name,
state: '待检验'
}
- actionFAIInspection(tempData).then(({data}) => {
+ actionFAIInspection(tempData).then(async ({data}) => {
if (data && data.code === 0) {
- this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
- onClose: () => {}
+ onClose: () => {
+ }
})
+ this.searchData.inspectionNo = row.inspectionNo
+ await this.getDataList()
+ this.detailModal(row)
} else {
- this.$alert(data.msg, '错误', {
+ await this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
diff --git a/src/views/modules/qc/FQASResultEntry.vue b/src/views/modules/qc/FQASResultEntry.vue
index afc363b..8ca9fea 100644
--- a/src/views/modules/qc/FQASResultEntry.vue
+++ b/src/views/modules/qc/FQASResultEntry.vue
@@ -2907,17 +2907,20 @@
actionBy: this.$store.state.user.name,
state: '待检验'
}
- actionFQASInspection(tempData).then(({data}) => {
+ actionFQASInspection(tempData).then(async ({data}) => {
if (data && data.code === 0) {
- this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
- onClose: () => {}
+ onClose: () => {
+ }
})
+ this.searchData.inspectionNo = row.inspectionNo
+ await this.getDataList()
+ this.detailModal(row)
} else {
- this.$alert(data.msg, '错误', {
+ await this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
diff --git a/src/views/modules/qc/FQCResultEntry.vue b/src/views/modules/qc/FQCResultEntry.vue
index 41558cd..fc3def4 100644
--- a/src/views/modules/qc/FQCResultEntry.vue
+++ b/src/views/modules/qc/FQCResultEntry.vue
@@ -3280,17 +3280,20 @@
actionBy: this.$store.state.user.name,
state: '待检验'
}
- actionFQCInspection(tempData).then(({data}) => {
+ actionFQCInspection(tempData).then(async ({data}) => {
if (data && data.code === 0) {
- this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
- onClose: () => {}
+ onClose: () => {
+ }
})
+ this.searchData.inspectionNo = row.inspectionNo
+ await this.getDataList()
+ this.detailModal(row)
} else {
- this.$alert(data.msg, '错误', {
+ await this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
diff --git a/src/views/modules/qc/IPQCResultEntry.vue b/src/views/modules/qc/IPQCResultEntry.vue
index a883455..cbd264f 100644
--- a/src/views/modules/qc/IPQCResultEntry.vue
+++ b/src/views/modules/qc/IPQCResultEntry.vue
@@ -61,15 +61,9 @@
-
-
-
-
-
+
+ 加工中心
+
@@ -950,7 +944,6 @@
import qcFAIUploadFile from "./qc_FAI_upload_file"
import comQcItemImageUploadFile from "./com_qc_itemImage_upload_file"
import subDetailUpload from "./sub_detail_upload";
- import {getWorkCenterData} from "../../../api/base/site";
/*上传文件的組件*/
export default {
components: {
@@ -1026,7 +1019,6 @@
exportFooter: [],
exportList: [],
// 导出 end
- workCenterList: [],
checkCompletedData:{
inspectionNo: ''
},
@@ -2461,8 +2453,6 @@
this.inspectionTypeSearch()
// 处置措施
this.disposalMeasuresSearch()
- // 获取加工中心
- this.getWorkCenterList()
// 单位
this.umSearch()
// 查看 质量任务生成规则控制 动控是否开启
@@ -3113,6 +3103,7 @@
this.type = type
this.$nextTick(() => {
let strVal = ''
+ let conSql = ''
if (val === 1052) {
this.searchSeqInfo()
this.seqDetailFlag = true
@@ -3129,6 +3120,14 @@
strVal = this.detailData.responsiblePerson
this.$refs.baseList.init(val, strVal)
}
+ if (val === 509) {
+ strVal = this.detailData.responsiblePerson
+ this.$refs.baseList.init(val, strVal)
+ }
+ if (val === 24) {
+ strVal = this.searchData.workCenterNo
+ this.$refs.baseList.init(val, strVal)
+ }
// if (val === 206) {
// strVal = this.modalData.partNo
// this.$refs.baseList.init(val, strVal)
@@ -3157,6 +3156,9 @@
if (this.tagNo === 509) {
this.detailData.responsiblePerson = val.SupplierID
}
+ if (this.tagNo === 24) {
+ this.searchData.workCenterNo = val.WorkCenterNo
+ }
// if (this.tagNo === 206) {
// this.modalData.partNo = val.part_no
// this.modalData.partDesc = val.part_desc
@@ -3761,17 +3763,20 @@
actionBy: this.$store.state.user.name,
state: '待检验'
}
- actionIPQCInspection(tempData).then(({data}) => {
+ actionIPQCInspection(tempData).then(async ({data}) => {
if (data && data.code === 0) {
- this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
- onClose: () => {}
+ onClose: () => {
+ }
})
+ this.searchData.inspectionNo = row.inspectionNo
+ await this.getDataList()
+ this.detailModal(row)
} else {
- this.$alert(data.msg, '错误', {
+ await this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
@@ -4094,14 +4099,6 @@
})
},
- getWorkCenterList(){
- getWorkCenterData().then(({data}) => {
- if (data.code === 0) {
- this.workCenterList = data.rows
- }
- })
- },
-
// 收藏 OR 取消收藏
favoriteFunction () {
let userFavorite = {
diff --git a/src/views/modules/qc/IQCResultEntry.vue b/src/views/modules/qc/IQCResultEntry.vue
index 167e6cb..f9e2c55 100644
--- a/src/views/modules/qc/IQCResultEntry.vue
+++ b/src/views/modules/qc/IQCResultEntry.vue
@@ -3091,17 +3091,20 @@
actionBy: this.$store.state.user.name,
state: '待检验'
}
- actionIQCInspection(tempData).then(({data}) => {
+ actionIQCInspection(tempData).then(async ({data}) => {
if (data && data.code === 0) {
- this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
- onClose: () => {}
+ onClose: () => {
+ }
})
+ this.searchData.inspectionNo = row.inspectionNo
+ await this.getDataList()
+ this.detailModal(row)
} else {
- this.$alert(data.msg, '错误', {
+ await this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
diff --git a/src/views/modules/qc/OQCResultEntry.vue b/src/views/modules/qc/OQCResultEntry.vue
index 342141f..777e5a8 100644
--- a/src/views/modules/qc/OQCResultEntry.vue
+++ b/src/views/modules/qc/OQCResultEntry.vue
@@ -2429,17 +2429,20 @@
actionBy: this.$store.state.user.name,
state: '待检验'
}
- actionFQASInspection(tempData).then(({data}) => {
+ actionFQASInspection(tempData).then(async ({data}) => {
if (data && data.code === 0) {
- this.getDataList()
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
- onClose: () => {}
+ onClose: () => {
+ }
})
+ this.searchData.inspectionNo = row.inspectionNo
+ await this.getDataList()
+ this.detailModal(row)
} else {
- this.$alert(data.msg, '错误', {
+ await this.$alert(data.msg, '错误', {
confirmButtonText: '确定'
})
}
diff --git a/src/views/modules/report/IPQC_report.vue b/src/views/modules/report/IPQC_report.vue
index 9ba7b57..3049dcf 100644
--- a/src/views/modules/report/IPQC_report.vue
+++ b/src/views/modules/report/IPQC_report.vue
@@ -29,15 +29,9 @@
-
-
-
-
-
+
+ 加工中心
+
@@ -186,6 +180,8 @@
+
+