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

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

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

@ -862,7 +862,11 @@ export default {
,
created() {
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();
}

Loading…
Cancel
Save