|
@ -165,7 +165,7 @@ |
|
|
end-placeholder="结束日期" |
|
|
end-placeholder="结束日期" |
|
|
></el-date-picker> |
|
|
></el-date-picker> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item label="单据状态" prop="State"> |
|
|
<el-form-item label="单据状态" prop="State" v-show="isShowState"> |
|
|
<el-checkbox-group v-model="listQuery.state"> |
|
|
<el-checkbox-group v-model="listQuery.state"> |
|
|
<el-checkbox v-for="(item, index) in billState" :key="item.id" :label="item.id" @change="checkedListChange(index)"> |
|
|
<el-checkbox v-for="(item, index) in billState" :key="item.id" :label="item.id" @change="checkedListChange(index)"> |
|
|
{{ item.name }} |
|
|
{{ item.name }} |
|
@ -542,6 +542,7 @@ export default { |
|
|
productTypeList:[{id:1,name:'门板'},{id:2,name:'柱护板'}], |
|
|
productTypeList:[{id:1,name:'门板'},{id:2,name:'柱护板'}], |
|
|
isShowHostSN : false, |
|
|
isShowHostSN : false, |
|
|
isShowVin : false, |
|
|
isShowVin : false, |
|
|
|
|
|
isShowState:true, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
}; |
|
@ -824,7 +825,10 @@ export default { |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
valueselectChange(){this.$forceUpdate();}, |
|
|
valueselectChange(){ |
|
|
|
|
|
this.$forceUpdate(); |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
handleImportSAP(){}, |
|
|
handleImportSAP(){}, |
|
|
|
|
|
|
|
|
handleFilter() { |
|
|
handleFilter() { |
|
@ -1382,12 +1386,16 @@ export default { |
|
|
this.$refs.btn1.$el.innerText = "打印门板发货排序单"; |
|
|
this.$refs.btn1.$el.innerText = "打印门板发货排序单"; |
|
|
this.$refs.btn2.$el.innerText = "重新打印门板发货排序单"; |
|
|
this.$refs.btn2.$el.innerText = "重新打印门板发货排序单"; |
|
|
this.$refs.btn3.$el.innerText = "补打门板发货排序单"; |
|
|
this.$refs.btn3.$el.innerText = "补打门板发货排序单"; |
|
|
|
|
|
this.listQuery.state.push(this.billState[0].id); |
|
|
|
|
|
this.isShowState = true; |
|
|
} |
|
|
} |
|
|
else if(this.listQuery.productType === 2) |
|
|
else if(this.listQuery.productType === 2) |
|
|
{ |
|
|
{ |
|
|
this.$refs.btn1.$el.innerText = "打印柱护板发货排序单"; |
|
|
this.$refs.btn1.$el.innerText = "打印柱护板发货排序单"; |
|
|
this.$refs.btn2.$el.innerText = "重新打印柱护板发货排序单"; |
|
|
this.$refs.btn2.$el.innerText = "重新打印柱护板发货排序单"; |
|
|
this.$refs.btn3.$el.innerText = "补打柱护板发货排序单"; |
|
|
this.$refs.btn3.$el.innerText = "补打柱护板发货排序单"; |
|
|
|
|
|
this.listQuery.state = []; |
|
|
|
|
|
this.isShowState = false; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|