diff --git a/src/api/qualityTesting.ts b/src/api/qualityTesting.ts index cd7f07d..1ccf030 100644 --- a/src/api/qualityTesting.ts +++ b/src/api/qualityTesting.ts @@ -24,6 +24,9 @@ export interface QualityTesting { status?: number + inspectQty?:number + + inspectorId?: number inspectTime?: string diff --git a/src/views/biz/orderProcessPlan/components/ReportDetail.vue b/src/views/biz/orderProcessPlan/components/ReportDetail.vue index ea77693..f23e6ae 100644 --- a/src/views/biz/orderProcessPlan/components/ReportDetail.vue +++ b/src/views/biz/orderProcessPlan/components/ReportDetail.vue @@ -35,6 +35,26 @@ const columns = [ key: 'quantity', width: 120 }, + { + title: '完成数量', + key: 'qualifiedQty', + width: 120 + }, + { + title: '报废数量', + key: 'scrapQty', + width: 120 + }, + { + title: '返工数量', + key: 'reworkQty', + width: 120 + }, + { + title: '让步接收数量', + key: 'connectionQty', + width: 120 + }, { title: '提交人', key: 'userName', diff --git a/src/views/biz/qualityTesting/index.vue b/src/views/biz/qualityTesting/index.vue index 754f95c..01b768a 100644 --- a/src/views/biz/qualityTesting/index.vue +++ b/src/views/biz/qualityTesting/index.vue @@ -245,6 +245,29 @@ + + + + + {{ qualityTestingInfo.materialCode || '-' }} + {{ qualityTestingInfo.materialName || '-' }} + {{ qualityTestingInfo.workOrderCode || '-' }} + {{ qualityTestingInfo.processName || '-' }} + {{ qualityTestingInfo.assingCode || '-' }} + {{ qualityTestingInfo.totalQty ?? '-' }} + {{ qualityTestingInfo.inspectQty ?? '-' }} + {{ handlerPatchStatus(qualityTestingInfo.status) ?? '-' }} + + + + + + + @@ -252,8 +275,8 @@