diff --git a/public/config.js b/public/config.js index 9c0e075..58254e1 100644 --- a/public/config.js +++ b/public/config.js @@ -14,4 +14,12 @@ window.PROCESS_QUALITY_RECORD = "http://192.168.169.172:9000/jmreport/view/11531 window.WARE_MATERIAL_STOCK = "http://192.168.169.172:9000/jmreport/view/1186917825215324160" //仓管-库存汇总-存料登记卡打印 // 配套单打印 -window.COMPANION = "http://192.168.169.172:9000/jmreport/view/1188705683594706944" \ No newline at end of file +window.COMPANION = "http://192.168.169.172:9000/jmreport/view/1188705683594706944" + +// 领料单打印 +window.WARE_MATERIAL_PRINT = "http://192.168.169.172:9000/jmreport/view/1181486341205573632" + +// 领料单明细打印 + +// 库存汇总标签打印 +window.WARE_MATERIAL_STOCK_TAG = "http://192.168.169.172:9000/jmreport/view/1181492297180168192" \ No newline at end of file diff --git a/src/api/outsourcingManagement/performanceApplication.js b/src/api/outsourcingManagement/performanceApplication.js index 45e6ad1..7fe3107 100644 --- a/src/api/outsourcingManagement/performanceApplication.js +++ b/src/api/outsourcingManagement/performanceApplication.js @@ -13,7 +13,7 @@ export const getList = params => { // 外协绩效申请 export const performanceApply = data => { return request({ - url: '/api/blade-desk/mesOemMerits/submit', + url: '/api/blade-desk/mesOemMerits/applyOemMerits', method: 'post', data }); diff --git a/src/api/qualityManagement/productionTesting/productionQuality.js b/src/api/qualityManagement/productionTesting/productionQuality.js index 7c572d5..15f077c 100644 --- a/src/api/qualityManagement/productionTesting/productionQuality.js +++ b/src/api/qualityManagement/productionTesting/productionQuality.js @@ -76,7 +76,7 @@ export const getHardnessList = (params) => { // 刷新硬度数据 export const refreshHardness = (params) => { return request({ - url: '/api/blade-desk/QA/IotHardness/getDataRefresh', + url: '/api/blade-desk/QA/IotHardness/queryHardnessData', method: 'get', params }); @@ -92,18 +92,18 @@ export const getThicknessList = (params) => { }; // 质量记录跳转 -export const goQualityRecord = (params) => { +export const goQualityRecord = (data) => { return request({ - url: '/api/blade-desk/QA/InspectionTask/toQaRecord', - method: 'get', - params + url: '/api/blade-desk/QA/InspectionTask/reviewQualityRecords', + method: 'post', + data }); }; // 合格证跳转 export const goCertificate = (params) => { return request({ - url: '/api/blade-desk/QA/InspectionTask/toCertificate', + url: '/api/blade-desk/QA/reviewQualification', method: 'get', params }); @@ -116,4 +116,12 @@ export const getSubPackageList = (params) => { method: 'get', params }); -}; \ No newline at end of file +}; + +// 获取量具下拉列表 +export const getMeasurement = () =>{ + return request({ + url:"/api/blade-desk/measurementRecords/listResult", + method:"get" + }) +} \ No newline at end of file diff --git a/src/views/inboundOutboundManagement/pickListPrinting.vue b/src/views/inboundOutboundManagement/pickListPrinting.vue index e9ea037..76064b4 100644 --- a/src/views/inboundOutboundManagement/pickListPrinting.vue +++ b/src/views/inboundOutboundManagement/pickListPrinting.vue @@ -23,10 +23,10 @@ - 领用单打印 - 领用单明细打印 @@ -2320,12 +2320,16 @@ export default { this.onLoad() }, printRequisition(){ - getRequisition({ - idList:this.selectionList.map(item=>item.id).join(","), - exportType:1 - }).then(rse =>{ - console.log('res--------------',res) - }) + window.open(window.WARE_MATERIAL_PRINT+'?id='+this.selectionList[0].id); + // getRequisition({ + // idList:this.selectionList.map(item=>item.id).join(","), + // exportType:1 + // }).then(rse =>{ + // console.log('res--------------',res) + // }) + }, + printDetail(){ + window.open(window.WARE_MATERIAL_PRINT_DETAIL+'?id='+this.selectionList[0].id); }, onLoad() { getList({ diff --git a/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue b/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue index 56693e9..654416b 100644 --- a/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue +++ b/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue @@ -5,9 +5,9 @@ @selection-change="selectionChange" @current-change="currentChange" @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad"> - + - + 结算 @@ -35,6 +35,9 @@ export default { data() { return { selectionList: [], + data:[], + loading:false, + query:{}, option: { height: 'auto', calcHeight: 32, @@ -189,7 +192,7 @@ export default { }, { label: '镀后入库时间', - prop: 'workCenterNames', + prop: 'duhoutime', sortable: true, filter: true, span: 24, @@ -338,9 +341,8 @@ export default { ] }, - form: { - - }, + form: {}, + formValue:{}, page: { pageSize: 10, currentPage: 1, @@ -467,9 +469,9 @@ export default { ] this.page.total = this.data.length this.loading = false - setTimeout(() => { - this.selectionClear() - }, 500) + // setTimeout(() => { + // this.selectionClear() + // }, 500) } } } diff --git a/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue b/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue index f17e267..dca28bd 100644 --- a/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue +++ b/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue @@ -24,6 +24,9 @@ export default { data() { return { selectionList: [], + data:[], + loading:false, + query:{}, option: { height: 'auto', calcHeight: 32, @@ -508,9 +511,9 @@ export default { ] this.page.total = this.data.length this.loading = false - setTimeout(() => { - this.selectionClear() - }, 500) + // setTimeout(() => { + // this.selectionClear() + // }, 500) } } } diff --git a/src/views/oem/oemOrderSettlement/components/settlementIn.vue b/src/views/oem/oemOrderSettlement/components/settlementIn.vue index 691c6ce..18eac1c 100644 --- a/src/views/oem/oemOrderSettlement/components/settlementIn.vue +++ b/src/views/oem/oemOrderSettlement/components/settlementIn.vue @@ -27,6 +27,9 @@ export default { data() { return { selectionList: [], + data:[], + loading:false, + query:{}, option: { height: 'auto', calcHeight: 32, diff --git a/src/views/oem/oemOrderSettlement/components/unsettled.vue b/src/views/oem/oemOrderSettlement/components/unsettled.vue index e24e6c4..2157bad 100644 --- a/src/views/oem/oemOrderSettlement/components/unsettled.vue +++ b/src/views/oem/oemOrderSettlement/components/unsettled.vue @@ -37,6 +37,9 @@ export default { data() { return { selectionList: [], + data:[], + loading:false, + query:{}, option: { height: 'auto', calcHeight: 32, @@ -446,9 +449,9 @@ export default { ] this.page.total = this.data.length this.loading = false - setTimeout(() => { - this.selectionClear() - }, 500) + // setTimeout(() => { + // this.selectionClear() + // }, 500) } } } diff --git a/src/views/oem/performanceApplication/components/addQuality.vue b/src/views/oem/performanceApplication/components/addQuality.vue index 238174d..dc4df53 100644 --- a/src/views/oem/performanceApplication/components/addQuality.vue +++ b/src/views/oem/performanceApplication/components/addQuality.vue @@ -501,20 +501,20 @@ export default { console.log('111111111111') this.$refs.form.validate(valid => { if (valid) { - this.data.map(item =>{ - item.ocId = parseInt(item.ocId) - }) + // this.data.map(item =>{ + // item.ocId = parseInt(item.ocId) + // }) let params = { date:this.submitForm.date, oemMeritsEntities:this.data } console.log('param---------',params) - // performanceApply(params).then(res =>{ - // if(res.data.code == 200){ - // this.$message.success('申请成功') - // this.closeDialog(true) - // } - // }) + performanceApply(params).then(res =>{ + if(res.data.code == 200){ + this.$message.success('申请成功') + this.closeDialog(true) + } + }) } }) diff --git a/src/views/productionTesting/productionQuality.vue b/src/views/productionTesting/productionQuality.vue index 6351ca0..2704e74 100644 --- a/src/views/productionTesting/productionQuality.vue +++ b/src/views/productionTesting/productionQuality.vue @@ -102,7 +102,8 @@ --> - + + 同步同炉/同槽 - + {{scope.row.mtName}} - - - + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -367,22 +369,22 @@ - - - - - + + + + + - - - + + + - - - + + + @@ -404,7 +406,7 @@