Browse Source

0412 新看板

master
ruanqi 3 years ago
parent
commit
52e26dfc83
  1. 1
      src/views/modules/board/nextWeekShipmentBoard.vue
  2. 5
      src/views/modules/production/closeSchedule.vue
  3. 15
      src/views/modules/production/scheduleForShopOrder.vue
  4. 2
      src/views/modules/production/soscheduleRouting.vue

1
src/views/modules/board/nextWeekShipmentBoard.vue

@ -189,6 +189,7 @@
// // (+=) // // (+=)
// if (divData.clientHeight + divData.scrollTop +1>= divData.scrollHeight) { // if (divData.clientHeight + divData.scrollTop +1>= divData.scrollHeight) {
// // table // // table
// //
// divData.scrollTop = 0 // divData.scrollTop = 0
// //

5
src/views/modules/production/closeSchedule.vue

@ -101,8 +101,9 @@
min-width="160" min-width="160"
label="操作"> label="操作">
<template slot-scope="scope" class="foo_container"> <template slot-scope="scope" class="foo_container">
<a type="text" size="small" @click="circulation(scope.row)">流转</a>
<a type="text" size="small" @click="closeSchedule(scope.row)">关闭派工单</a>
<a v-if="scope.row.circulationSeqNo===null" type="text" size="small" @click="circulation(scope.row)">流转</a>
<a v-if="scope.row.circulationSeqNo===null" type="text" size="small" @click="closeSchedule(scope.row)">关闭派工单</a>
<a v-if="scope.row.circulationSeqNo!=null" type="text" size="small" >派工单已流转</a>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column

15
src/views/modules/production/scheduleForShopOrder.vue

@ -90,13 +90,13 @@
<el-option label="已派工完" value="ROUND(ISNULL(SL.scheduledQty,0),3) >=ROUND(a.LotSize,3)"></el-option> <el-option label="已派工完" value="ROUND(ISNULL(SL.scheduledQty,0),3) >=ROUND(a.LotSize,3)"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item :label="'订单类型:'">
<el-select filterable v-model="searchData.eLevels" style="width: 120px">
<el-option label="全部" value=""></el-option>
<el-option label="混炼订单" value=2 ></el-option>
<el-option label="产成品订单" value=0></el-option>
</el-select>
</el-form-item>
<!-- <el-form-item :label="'订单类型:'">-->
<!-- <el-select filterable v-model="searchData.eLevels" style="width: 120px">-->
<!-- <el-option label="全部" value=""></el-option>-->
<!-- <el-option label="混炼订单" value=2 ></el-option>-->
<!-- <el-option label="产成品订单" value=0></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item :label="' '"> <el-form-item :label="' '">
<el-button @click="search()" style="margin-left: 24px" type="primary">查询</el-button> <el-button @click="search()" style="margin-left: 24px" type="primary">查询</el-button>
<download-excel <download-excel
@ -506,7 +506,6 @@
site: this.$store.state.user.site, site: this.$store.state.user.site,
planStatus: 'ROUND(a.LotSize,3) >ROUND(ISNULL(SL.scheduledQty,0),3)', planStatus: 'ROUND(a.LotSize,3) >ROUND(ISNULL(SL.scheduledQty,0),3)',
itemNo:'', itemNo:'',
eLevels:'',
}, },
schedulingModalData: { schedulingModalData: {
orderNo: '', orderNo: '',

2
src/views/modules/production/soscheduleRouting.vue

@ -102,7 +102,7 @@
label="操作"> label="操作">
<template slot-scope="scope" class="foo_container"> <template slot-scope="scope" class="foo_container">
<a type="text" size="small" @click="toPrint(scope.row)">打印</a> <a type="text" size="small" @click="toPrint(scope.row)">打印</a>
<a type="text" size="small" @click="cancelJob(scope.row)">取消派工单</a>
<a v-if="scope.row.circulationSeqNo!=null" type="text" size="small" @click="cancelJob(scope.row)">取消派工单</a>
<a type="text" size="small" @click="printPartCard(scope.row)">物料标识卡</a> <a type="text" size="small" @click="printPartCard(scope.row)">物料标识卡</a>
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save