From be7b33380311eaa484272ac5f53cc4e5cc4aa0a6 Mon Sep 17 00:00:00 2001 From: "[li_she]" <[li.she@xujiesoft.com]> Date: Tue, 15 Mar 2022 09:18:38 +0800 Subject: [PATCH] fqc sxm 2022-3-15 --- .../expirationTimeModification.vue | 2 +- .../yieldReport/com_finish_part_roll.vue | 6 +- .../yieldReport/com_produce_report_normal.vue | 40 +- .../yieldReport/not_over_finish_roll.vue | 899 ++++++++++++++++++ .../otherReport/bulk_inspection.vue | 24 +- .../otherReport/fqc_produce_report_normal.vue | 28 +- .../otherReport/fqc_split_roll_report.vue | 1 + 7 files changed, 980 insertions(+), 20 deletions(-) create mode 100644 src/views/modules/yieldReport/not_over_finish_roll.vue diff --git a/src/views/modules/rawMaterials/expirationTimeModification.vue b/src/views/modules/rawMaterials/expirationTimeModification.vue index c56cedb..e43db19 100644 --- a/src/views/modules/rawMaterials/expirationTimeModification.vue +++ b/src/views/modules/rawMaterials/expirationTimeModification.vue @@ -110,7 +110,7 @@ export default { functionId: this.$route.meta.menuId, tableId: "105001002ETM", languageCode: this.$i18n.locale, - showDefault: true, + showDefault: false, query:{ }, diff --git a/src/views/modules/yieldReport/com_finish_part_roll.vue b/src/views/modules/yieldReport/com_finish_part_roll.vue index be89b60..2cee370 100644 --- a/src/views/modules/yieldReport/com_finish_part_roll.vue +++ b/src/views/modules/yieldReport/com_finish_part_roll.vue @@ -25,7 +25,7 @@ - 结束卷 + 保存 @@ -243,7 +243,7 @@ export default { name: "com_finish_roll", data() { return { - titleCon: '结束卷', + titleCon: '产量报告', showExceptionFlag: false, sfdcTimeList: [], scheduleData: { @@ -518,7 +518,7 @@ export default { //初始化操作员对象 this.operatorData = JSON.parse(JSON.stringify(operatorData)); //初始化标题 - this.titleCon = '结束卷操作 \ + this.titleCon = '产量报告 \ 派工单号:'+scheduleData.seqNo; //处理异常的原因 this.pageData.exceptionFlag = 'N'; diff --git a/src/views/modules/yieldReport/com_produce_report_normal.vue b/src/views/modules/yieldReport/com_produce_report_normal.vue index e67a9e6..d5b5068 100644 --- a/src/views/modules/yieldReport/com_produce_report_normal.vue +++ b/src/views/modules/yieldReport/com_produce_report_normal.vue @@ -432,6 +432,26 @@ 产量报告 + + + + 其它操作 + + + 其它操作 + + + 其它操作 + + 其它操作 + + @@ -535,6 +555,8 @@ + + @@ -577,12 +599,14 @@ import comReplaceMaterial from "./com_replace_material"/*换料组件*/ import comCuttingMaterial from "./com_cutting_material"/*材料下料*/ import comProduceDown from "./com_produce_down";/*停机组件*/ import comFinishSchedule from "./com_finish_schedule";/*结束派工单组件*/ +import notOverFinishRoll from "./not_over_finish_roll";/*结束派工单组件*/ /*生产过程的停机组件*/ export default { name: "com_produce_report_normal", data() { return { titleCon: '', + showNotOverFlag:false, showOperatorFlag: false, showSwitchFlag: false, showSeparateFlag: false, @@ -2844,8 +2868,16 @@ export default { comCuttingMaterial,/*材料下料的功能*/ comProduceDown,/*生产过程的停机组件*/ comFinishSchedule,/*结束派工单的组件*/ + notOverFinishRoll,/*异常下级报工*/ }, methods: { + // 异常下机报工 + notOverFinishRollModal(){ + this.$nextTick(() => { + this.showNotOverFlag = true; + this.$refs.notOverFinishRoll.init(this.scheduleData, this.operatorData) + }); + }, // 获取派工单的信息 getScheduleDataBySeqNo() { getScheduleDataBySeqNo(this.scheduleData.seqNo).then(({data}) => { @@ -2882,55 +2914,47 @@ export default { this.searchData = JSON.parse(JSON.stringify(this.scheduleData)); }); }, - //列表表格选择替换 tabClick(tab, event) { //刷新列表数据 this.refreshCurrentTabTable(); }, - //刷新派工单的时间的记录 async getSfdcTimeList() { await getSfdcTimeByCon(this.searchData).then(({data}) => { this.sfdcTimeList = data.rows; }); }, - //刷新工单的工具信息 getOrderToolList() { getOrderToolByCon(this.searchData).then(({data}) => { this.orderToolList = data.rows; }); }, - //刷新派工单的刀模板的记录 getSfdcToolList() { getSfdcToolByCon(this.searchData).then(({data}) => { this.sfdcToolList = data.rows; }); }, - //刷新工单的bom信息 getOrderBomList() { getOrderBomByCon(this.searchData).then(({data}) => { this.orderBomList = data.rows; }); }, - //刷新派工单的材料表的记录 getSfdcMaterialList() { getSfdcMaterialByCon(this.searchData).then(({data}) => { this.sfdcMaterialList = data.rows; }); }, - //刷新派工单的下机卷的记录 getSfdcRollOpsList() { getSfdcRollOpsByCon(this.searchData).then(({data}) => { this.sfdcRollOpsList = data.rows; }); }, - //刷新派工单的不良标的记录 getSfdcDefectList() { getSfdcDefectByCon(this.searchData).then(({data}) => { diff --git a/src/views/modules/yieldReport/not_over_finish_roll.vue b/src/views/modules/yieldReport/not_over_finish_roll.vue new file mode 100644 index 0000000..3ffc4dd --- /dev/null +++ b/src/views/modules/yieldReport/not_over_finish_roll.vue @@ -0,0 +1,899 @@ + + + + + diff --git a/src/views/modules/yieldReport/otherReport/bulk_inspection.vue b/src/views/modules/yieldReport/otherReport/bulk_inspection.vue index 3d94233..9c4ef04 100644 --- a/src/views/modules/yieldReport/otherReport/bulk_inspection.vue +++ b/src/views/modules/yieldReport/otherReport/bulk_inspection.vue @@ -1,6 +1,8 @@