From a5d882bad051515960e22b914b99da640bb56ebe Mon Sep 17 00:00:00 2001 From: zhaoxiaolin Date: Thu, 4 Jan 2024 08:45:49 +0800 Subject: [PATCH 01/27] =?UTF-8?q?=E8=A1=A8=E6=A0=BC=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/quality/checkTypeProject/selectProject.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/quality/checkTypeProject/selectProject.vue b/src/views/quality/checkTypeProject/selectProject.vue index 36bd014..38eeec4 100644 --- a/src/views/quality/checkTypeProject/selectProject.vue +++ b/src/views/quality/checkTypeProject/selectProject.vue @@ -68,7 +68,7 @@ - + Date: Thu, 4 Jan 2024 10:06:01 +0800 Subject: [PATCH 02/27] =?UTF-8?q?=E7=BB=B4=E4=BF=9D=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/wms/equipment.js | 18 +++ src/views/wms/equipment/index.vue | 16 ++- src/views/wms/equipment/itemBYRecords.vue | 167 ++++++++++++++++++++++ src/views/wms/equipment/itemWXRecords.vue | 160 +++++++++++++++++++++ 4 files changed, 360 insertions(+), 1 deletion(-) create mode 100644 src/views/wms/equipment/itemBYRecords.vue create mode 100644 src/views/wms/equipment/itemWXRecords.vue diff --git a/src/api/wms/equipment.js b/src/api/wms/equipment.js index b746322..c596c4a 100644 --- a/src/api/wms/equipment.js +++ b/src/api/wms/equipment.js @@ -114,3 +114,21 @@ export function getAuxiliaryEquipmentList(query) { params: query }); } + +// 查询维修记录 +export function getWXRecordsList(query) { + return request({ + url: '/wms/equipment/getWXRecordsList', + method: 'get', + params: query + }); +} + +// 查询保养记录 +export function getBYRecordsList(query) { + return request({ + url: '/wms/equipment/getBYRecordsList', + method: 'get', + params: query + }); +} diff --git a/src/views/wms/equipment/index.vue b/src/views/wms/equipment/index.vue index d5a72cb..9469bb6 100644 --- a/src/views/wms/equipment/index.vue +++ b/src/views/wms/equipment/index.vue @@ -907,6 +907,18 @@ :equipmentCode="form.equipmentCode" > + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/views/wms/equipment/itemWXRecords.vue b/src/views/wms/equipment/itemWXRecords.vue new file mode 100644 index 0000000..70a9449 --- /dev/null +++ b/src/views/wms/equipment/itemWXRecords.vue @@ -0,0 +1,160 @@ + + + From ece6265cf1e144c452e46a7dcdd4f05c9de38f81 Mon Sep 17 00:00:00 2001 From: A0010407 Date: Thu, 4 Jan 2024 13:51:57 +0800 Subject: [PATCH 03/27] =?UTF-8?q?=E8=AE=BE=E5=A4=87=20=E7=BB=B4=E4=BF=AE--?= =?UTF-8?q?----->=E8=AE=BE=E5=A4=87=E5=AE=8C=E5=A5=BD=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/device/repairOrder/index.vue | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/src/views/device/repairOrder/index.vue b/src/views/device/repairOrder/index.vue index 5dfaeab..0a1c61e 100644 --- a/src/views/device/repairOrder/index.vue +++ b/src/views/device/repairOrder/index.vue @@ -1729,7 +1729,7 @@ export default { indexMethod(index) { return index + 1; }, - //计算时间 结束维修时间-开始维修时间 + //计算时间 结束维修时间-开始维修时间 转化为小时 listeningTime() { if (this.form.workEndTime != null && this.form.workStartTime != null) { var time1 = moment(this.form.workStartTime); @@ -1738,26 +1738,14 @@ export default { let { _data } = duration; console.log("打印维修时间", _data); //拼接 - this.form.workCostTime = - _data.years + - "年" + - _data.months + - "月" + - _data.days + - "日" + - _data.hours + - "小时" + - _data.minutes + - "分" + - _data.seconds + - "秒"; + this.form.workCostTime = (_data.days*24 + _data.hours + (_data.minutes/60) + (_data.seconds/3600)).toFixed(1)+ "小时" ; } }, - //计算时间 结束停机时间-开始停机时间 - // listeningDownTime() { - // if (this.form.actualDownEndTime != null && this.form.actualDownStartTime != null) { - // var time1 = moment(this.form.actualDownStartTime); - // var time2 = moment(this.form.actualDownEndTime); + //计算时间 结束维修时间-开始维修时间 + // listeningTime() { + // if (this.form.workEndTime != null && this.form.workStartTime != null) { + // var time1 = moment(this.form.workStartTime); + // var time2 = moment(this.form.workEndTime); // let duration = moment.duration(time2.diff(time1)); // let { _data } = duration; // console.log("打印维修时间", _data); From 7a42f5ebfd6ca9b261b691688f36d574c950c7c8 Mon Sep 17 00:00:00 2001 From: guoshuang Date: Thu, 4 Jan 2024 14:25:29 +0800 Subject: [PATCH 04/27] =?UTF-8?q?=E5=8C=85=E6=9D=90=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E5=B0=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wms/outorder/index.vue | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/views/wms/outorder/index.vue b/src/views/wms/outorder/index.vue index 206ea59..547c631 100644 --- a/src/views/wms/outorder/index.vue +++ b/src/views/wms/outorder/index.vue @@ -58,7 +58,7 @@ - + @@ -357,36 +357,36 @@ export default { Optionlistck: [], Packagingline: [ { - stationNo: 'LJ1', - stationname: '榄菊1', + stationNo: 'XL01', + stationname: '包装线01', }, { - stationNo: 'LJ2', - stationname: '榄菊2', + stationNo: 'XL02', + stationname: '包装线02', }, { - stationNo: 'LJ3', - stationname: '榄菊3', + stationNo: 'XL03', + stationname: '包装线03', }, { - stationNo: 'LJ4', - stationname: '榄菊4', + stationNo: 'XL04', + stationname: '包装线04', }, { - stationNo: 'LJ5', - stationname: '榄菊5', + stationNo: 'XL05', + stationname: '包装线05', }, { - stationNo: 'LJ6', - stationname: '榄菊6', + stationNo: 'XL06', + stationname: '包装线06', }, { - stationNo: 'LJ7', - stationname: '榄菊7', + stationNo: 'XL07', + stationname: '包装线07', }, { - stationNo: 'LJ8', - stationname: '榄菊8', + stationNo: 'XL08', + stationname: '包装线08', }, ], From 177f899cfb899d46c570247c66c53cefc6142d34 Mon Sep 17 00:00:00 2001 From: zhaoxiaolin Date: Thu, 4 Jan 2024 15:45:18 +0800 Subject: [PATCH 05/27] =?UTF-8?q?=E5=B7=A1=E6=A3=80=E4=B8=8D=E8=89=AF?= =?UTF-8?q?=E5=B0=8F=E6=97=B6=E5=88=86=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/quality/qcTable.js | 8 + src/views/quality/checkTypeProject/index.vue | 2 +- src/views/quality/produceReport/index.vue | 5 +- src/views/quality/qcProduce/index.vue | 1 + src/views/quality/qcTableXJ/index.vue | 29 +-- src/views/quality/qcTableXJAnalysis/index.vue | 198 ++++++++++++++++++ 6 files changed, 216 insertions(+), 27 deletions(-) create mode 100644 src/views/quality/qcTableXJAnalysis/index.vue diff --git a/src/api/quality/qcTable.js b/src/api/quality/qcTable.js index 481e912..0d56b5e 100644 --- a/src/api/quality/qcTable.js +++ b/src/api/quality/qcTable.js @@ -41,3 +41,11 @@ export function getXJCheckTableDetail(query) { params: query }); } + +export function getXJChartData(query) { + return request({ + url: '/quality/staticTable/getXJChartData', + method: 'get', + params: query + }); +} diff --git a/src/views/quality/checkTypeProject/index.vue b/src/views/quality/checkTypeProject/index.vue index 1e8eca0..2bf54c8 100644 --- a/src/views/quality/checkTypeProject/index.vue +++ b/src/views/quality/checkTypeProject/index.vue @@ -114,7 +114,7 @@ {{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}} - + diff --git a/src/views/quality/produceReport/index.vue b/src/views/quality/produceReport/index.vue index 2cba9c8..d14359a 100644 --- a/src/views/quality/produceReport/index.vue +++ b/src/views/quality/produceReport/index.vue @@ -87,12 +87,13 @@ - + + + + @@ -299,6 +417,7 @@ export default { title: "", // 是否显示弹出层 open: false, + firstReportOpen: false, // 查询参数 queryParams: { checkTimeArray: [], @@ -451,10 +570,20 @@ export default { this.queryParams.recordId = recordId; getProduce(recordId).then(response => { this.form = response.data; - this.form.printable = 'printFrom'; //打印时需要 - this.form.ignore = ['no-print'];//打印时需要 - this.open = true; - this.title = "查看过程检验报告"; + if(this.form.checkType =='checkTypeSC') { + //首检报告 + this.form.printable = 'firstReportPrint'; //打印时需要 + this.form.ignore = ['no-print'];//打印时需要 + this.firstReportOpen = true; + this.title = "首检检验报告"; + }else { + //巡检报告 + this.form.printable = 'printForm'; //打印时需要 + this.form.ignore = ['no-print'];//打印时需要 + this.open = true; + this.title = "巡检检验报告"; + } + }); this.getCheckedProjectList(); }, @@ -518,6 +647,10 @@ export default { properties: params.properties || null }) }, + handleDone() { + this.firstReportOpen = false; + this.reset(); + }, } }; diff --git a/src/views/quality/qcProjectType/index.vue b/src/views/quality/qcProjectType/index.vue index af6a6e1..28314f9 100644 --- a/src/views/quality/qcProjectType/index.vue +++ b/src/views/quality/qcProjectType/index.vue @@ -80,6 +80,8 @@ + + \ No newline at end of file + diff --git a/src/views/wms/equipment/index.vue b/src/views/wms/equipment/index.vue index 67fae2e..d9997b5 100644 --- a/src/views/wms/equipment/index.vue +++ b/src/views/wms/equipment/index.vue @@ -1306,6 +1306,7 @@ export default { label: response.rows[i].materialCode + response.rows[i].materialDesc, }); } + console.log(this.auxiliaryEquipmentRightList) for (let i in response.selected) { this.rightList.push(response.selected[i].key); this.form.rightData = this.rightList; @@ -1460,6 +1461,7 @@ export default { this.queryAuxiliaryEquipmentParams.equipmentCategory = '0'; listEquipment(this.queryAuxiliaryEquipmentParams).then((response) => { + console.log("listEquipment") this.auxiliaryEquipmentLeftList = []; for (let i in response.rows) { // 将返回的列表赋值于穿梭框左边列表 @@ -1468,9 +1470,11 @@ export default { label: response.rows[i].equipmentCode + response.rows[i].equipmentName + response.rows[i].remark, }); } + console.log(this.auxiliaryEquipmentRightList) }); getEquipment(equipmentId).then((response) => { + console.log("getEquipment") this.form = response.data; this.rightList = []; for (let i in response.data.selectedData) { @@ -1478,12 +1482,14 @@ export default { this.rightList.push(response.data.selectedData[i].spareCode); } this.auxiliaryEquipmentRightList = []; + console.log(this.auxiliaryEquipmentRightList) for (let i in response.data.selectedEquipmentData) { // 将返回的辅助设备列表赋值于穿梭框右边列表 this.auxiliaryEquipmentRightList.push( response.data.selectedEquipmentData[i].auxiliaryEquipmentCode ); } + console.log(this.auxiliaryEquipmentRightList) if (response.data.imageFiles != null) { var newFiles = []; From e31ab3b7cfdb7705c21effab4a1a407a6d580ee6 Mon Sep 17 00:00:00 2001 From: shaoyong Date: Fri, 5 Jan 2024 18:08:31 +0800 Subject: [PATCH 18/27] =?UTF-8?q?=E6=9D=A5=E6=96=99=E6=A3=80=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/quality/firstReport/index.vue | 2 +- src/views/quality/incomeReport/index.vue | 130 ++++++++++++---------- src/views/quality/produceReport/index.vue | 21 ++-- 3 files changed, 81 insertions(+), 72 deletions(-) diff --git a/src/views/quality/firstReport/index.vue b/src/views/quality/firstReport/index.vue index 2fb0c1c..68341b2 100644 --- a/src/views/quality/firstReport/index.vue +++ b/src/views/quality/firstReport/index.vue @@ -142,7 +142,7 @@ -

(黑蚊香)首检确认表

+

(黑蚊香)首检确认表

diff --git a/src/views/quality/incomeReport/index.vue b/src/views/quality/incomeReport/index.vue index f32b916..9d89cf9 100644 --- a/src/views/quality/incomeReport/index.vue +++ b/src/views/quality/incomeReport/index.vue @@ -134,124 +134,108 @@
- + - - - - + +

中山榄菊日化实业有限公司

+
+ + +

白坯检验报告

+
+
+ - + - + + + + + + - - - - - - + - - - - - + + + + + - + + + + + + - + - + - - + - + - - - - - + - + {{ parseTime(form.checkTime, '{y}-{m}-{d} {h}:{i}:{s}') }} - - - + {{ parseTime(form.checkTime, '{y}-{m}-{d} {h}:{i}:{s}') }} - - - - - - - + - - - + - + - \ No newline at end of file diff --git a/src/views/quality/qcSampleRule/index.vue b/src/views/quality/qcSampleRule/index.vue index 9274ed0..f6c71fe 100644 --- a/src/views/quality/qcSampleRule/index.vue +++ b/src/views/quality/qcSampleRule/index.vue @@ -1,6 +1,6 @@ From f3f49d6a6d30bb57031cf47de308579b770b059f Mon Sep 17 00:00:00 2001 From: A0010407 Date: Tue, 9 Jan 2024 09:51:39 +0800 Subject: [PATCH 25/27] =?UTF-8?q?2024-1-9-1=20=E5=9F=BA=E7=A1=80=E4=BF=A1?= =?UTF-8?q?=E6=81=AF-=E8=AE=BE=E5=A4=87-=E5=B1=95=E7=A4=BA=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wms/equipment/index.vue | 7 +++++++ src/views/wms/equipment/itemEquipment.vue | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/views/wms/equipment/index.vue b/src/views/wms/equipment/index.vue index d9997b5..19ee090 100644 --- a/src/views/wms/equipment/index.vue +++ b/src/views/wms/equipment/index.vue @@ -221,6 +221,13 @@ /> + + @@ -27,6 +28,7 @@