修复单据选入多个产品问题

dev
郑明梁 2 years ago
parent 88ff28e3ca
commit d718bfc60d

@ -1096,6 +1096,8 @@ export default {
// //
if(tQuery.selectSupId!=null){ if(tQuery.selectSupId!=null){
this.codeFormData.selectSupId=tQuery.selectSupId this.codeFormData.selectSupId=tQuery.selectSupId
}else{
this.codeFormData.selectSupId=false
} }
//DI, //DI,
this.codeFormData.key ="key"; this.codeFormData.key ="key";

@ -862,7 +862,11 @@ export default {
, ,
created() { created() {
if(this.curRow.selectSupId!=null){ if(this.curRow.selectSupId!=null){
this.fromCorp=this.curRow.selectSupId if(this.curRow.selectSupId!=false){
this.fromCorp=this.curRow.selectSupId
}else{
this.fromCorp=''
}
} }
this.getList(); this.getList();
} }

Loading…
Cancel
Save