1.增加终止排产,当bom无法上料时终止并进行提醒

master
董哲奇 1 year ago
parent d600786c51
commit a90f64d15a

@ -2930,11 +2930,17 @@ export default {
}, },
paichan(){ paichan(){
const data={from:this.queryParam.beginTime,to:this.queryParam.endTime} const data={from:this.queryParam.beginTime,to:this.queryParam.endTime}
排产(data).then(()=>{ 排产(data).then((res)=>{
this.jgcx(false) if (res.success){
// (data).then(res=>{ this.jgcx(false)
// this.list=res.data 生成三月滚动(data).then(res=>{
// }) this.list=res.data
this.initList()
})
}else{
this.jgcx(false)
this.$message.warning(res.message)
}
}) })
}, },
jgcx(flag=true){ jgcx(flag=true){

Loading…
Cancel
Save