Browse Source

produce 2022年3月29日 sxm

master
[li_she] 4 years ago
parent
commit
de85468ba9
  1. 4
      src/views/modules/yieldReport/com_create_recheck.vue
  2. 12
      src/views/modules/yieldReport/produce_order.vue

4
src/views/modules/yieldReport/com_create_recheck.vue

@ -1,6 +1,7 @@
<template>
<div class="customer-css">
<el-dialog :title="titleCon" v-drag
:close-on-click-modal="false"
:visible.sync="createRecheckShow"
width="300px" style="height: 680px;" class="customer-dialog">
<el-container>
@ -101,6 +102,7 @@ export default {
username: this.$store.state.user.name,
orderNo: '',
itemNo: '',
scheduleDate: '',
workCenterNo: '',
resourceId: '',
scheduledDate: '',
@ -139,7 +141,7 @@ export default {
this.pageData.seqNo = row.seqNo;
this.pageData.rollNo = row.rollNo;
this.pageData.operatorId = row.operatorId;
this.pageData.scheduleDate = row.scheduledDate;
this.pageData.scheduleDate = this.dayjs(new Date()).format('YYYY-MM-DD');
this.pageData.workCenterNo = row.workCenterNo;
//
this.pageData.planStartTime = this.dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss');

12
src/views/modules/yieldReport/produce_order.vue

@ -183,7 +183,7 @@
<fqcSplitRollReport :close-on-click-modal="false"
:visible.sync="fqcRollShowReportFlag" ref="fqcSplitRollReport"></fqcSplitRollReport>
<!-- 创建重检派工单 -->
<createRecheck ref="createRecheck"></createRecheck>
<createRecheck ref="createRecheck" ></createRecheck>
<!-- 换包装 -->
<changePackaging :close-on-click-modal="false"
:visible.sync="changePackagingFlag" ref="changePackaging"></changePackaging>
@ -1136,12 +1136,14 @@ export default {
//
if (currentRow.closedFlag == 'N' && currentRow.parkFlag == 'N') {
this.menuButton.pauseButton = false
this.menuButton.openReverseButton = true
}else {
this.menuButton.pauseButton = true
}
//
if (currentRow.closedFlag == 'N' & currentRow.parkFlag == 'Y') {
menuButton.openReverseButton = false
menuButton.pauseButton = true
if (currentRow.closedFlag == 'N' && currentRow.parkFlag == 'Y') {
this.menuButton.openReverseButton = false
}else {
this.menuButton.openReverseButton = true
}
//
if (currentRow.costRollUpFlag == 'N') {

Loading…
Cancel
Save