工单字段更改

yangwl
wws 1 year ago
parent 1318426517
commit 9be9335e55

@ -427,7 +427,7 @@ export default {
attr4: null, attr4: null,
prodType: null, prodType: null,
factoryCode: null, factoryCode: null,
isEnd: null endFlag: null
}, },
// //
form: {}, form: {},
@ -589,7 +589,7 @@ export default {
/** 查询生产工单列表 */ /** 查询生产工单列表 */
getList() { getList() {
this.loading = true; this.loading = true;
this.queryParams.isEnd = '1';// this.queryParams.endFlag = '1';//
if(this.queryParams.productDateArray!=null){ if(this.queryParams.productDateArray!=null){
this.queryParams.productDateStart = moment(this.queryParams.productDateArray[0]).format('YYYY-MM-DD'); this.queryParams.productDateStart = moment(this.queryParams.productDateArray[0]).format('YYYY-MM-DD');
this.queryParams.productDateEnd = moment(this.queryParams.productDateArray[1]).format('YYYY-MM-DD'); this.queryParams.productDateEnd = moment(this.queryParams.productDateArray[1]).format('YYYY-MM-DD');
@ -639,7 +639,7 @@ export default {
updateTime: null, updateTime: null,
prodType: null, prodType: null,
factoryCode: null, factoryCode: null,
isEnd: null endFlag: null
}; };
this.resetForm("form"); this.resetForm("form");
}, },
@ -673,6 +673,14 @@ export default {
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
//
if (this.selectWork.status == "w1"){
this.$message({
message:'工单已派发!不可修改!',
type:'warning'
})
return;
}
// //
checkWorkOrder(this.selectWork.workorderId).then(response => { checkWorkOrder(this.selectWork.workorderId).then(response => {
if (response.code == 500){ if (response.code == 500){

Loading…
Cancel
Save