Browse Source

提交代码

lijuncheng0816
niexiting 1 month ago
parent
commit
5faae71e92
  1. 11
      src/pages/productionReceipt/job/productionReceiptJob.vue

11
src/pages/productionReceipt/job/productionReceiptJob.vue

@ -3,8 +3,7 @@
<com-empty-view v-if="jobList.length==0"></com-empty-view> <com-empty-view v-if="jobList.length==0"></com-empty-view>
<job-filter ref="filter" otherTitle="ASN" @switchChangeToday="switchChangeToday" <job-filter ref="filter" otherTitle="ASN" @switchChangeToday="switchChangeToday"
@switchChangeWait="switchChangeWait" @onScanNumber="getScanNumber" :checkedToday="checkedToday" @switchChangeWait="switchChangeWait" @onScanNumber="getScanNumber" :checkedToday="checkedToday"
:checkedWaitTask="checkedWaitTask" :isShowProductionLineCode="true" :checkedWaitTask="checkedWaitTask" :isShowProductionLineCode="true" @productionLineCode="productionLineCode"
@productionLineCode="productionLineCode"
:productionline="productionLineList"> :productionline="productionLineList">
</job-filter> </job-filter>
<view v-if="jobList.length>0"> <view v-if="jobList.length>0">
@ -85,7 +84,7 @@
title: '', title: '',
scanMessage: "", scanMessage: "",
productionLineList: [], productionLineList: [],
productionLine:"" productionLine: ""
}; };
}, },
onLoad(option) { onLoad(option) {
@ -136,7 +135,7 @@
methods: { methods: {
productionLineCode(productionLineCode) { productionLineCode(productionLineCode) {
this.productionLine = productionLineCode this.productionLine = productionLineCode
this.getList('refresh', this.productionLine) this.getList('refresh', this.productionLine)
}, },
getProductionReceiptJobByProductionline() { getProductionReceiptJobByProductionline() {
getProductionReceiptJobByProductionline().then(res => { getProductionReceiptJobByProductionline().then(res => {
@ -353,8 +352,8 @@
this.scanMessage = "" this.scanMessage = ""
var filters = [{ var filters = [{
column: "packingNumber", column: "packingNumber",
action: "==", action: "in",
value: result.label.packingNumber value: result.package.number + "," + result.package.parentNumber
}, },
{ {
column: "batch", column: "batch",

Loading…
Cancel
Save