This commit is contained in:
linfso 2025-04-30 16:58:22 +08:00
parent 233b036465
commit 725e9bfc69

View File

@ -553,7 +553,12 @@ export default {
relItem.payMoney=hasPayMap[itemSubBill.billNo];
}
}
else{
if(this.form.recType==2){
relItem.hasApplyFee=0;
relItem.payMoney=0
}
}
if(relItem.payMoney>0){
this.form.payRelList.push(relItem);
@ -611,6 +616,13 @@ export default {
relItem.payMoney=hasPayMap[itemSubBill.billNo];
}
}
else{
if(this.form.recType==2){
relItem.hasApplyFee=0;
relItem.payMoney=0
}
}
if(relItem.payMoney>0){
this.form.payRelList.push(relItem);
}