Browse Source

款项结转推送其他应收单报错问题修改

master
God 1 year ago
parent
commit
7bffa59f21
  1. 2
      anrui-fin/anrui-fin-biz/src/main/java/com/yxt/anrui/fin/biz/finfundscarriedforwardapply/FinFundsCarriedForwardApplyService.java

2
anrui-fin/anrui-fin-biz/src/main/java/com/yxt/anrui/fin/biz/finfundscarriedforwardapply/FinFundsCarriedForwardApplyService.java

@ -888,6 +888,7 @@ public class FinFundsCarriedForwardApplyService extends MybatisBaseService<FinFu
collectionDetailDtoOne.setExTaxMoney(listOne.get(0).getDcje().toString());
}
collectionDetailDtoOne.setUseTo("YT018");
collectionDetailDtoOne.setMaterialNo(listOne.get(0).getVinNo());
collectionDetailDtoListOne.add(collectionDetailDtoOne);
otherReceivableOne.setCollectionDetails(collectionDetailDtoListOne);
otherReceivableBillService.otherReceivableBillService(otherReceivableOne);
@ -909,6 +910,7 @@ public class FinFundsCarriedForwardApplyService extends MybatisBaseService<FinFu
collectionDetailDtoMany.setExTaxMoney(tzDto.getDcje().toString());
}
collectionDetailDtoMany.setUseTo("YT018");
collectionDetailDtoOne.setMaterialNo(tzDto.getVinNo());
collectionDetailDtoListMany.add(collectionDetailDtoMany);
otherReceivableMany.setCollectionDetails(collectionDetailDtoListMany);
otherReceivableBillService.otherReceivableBillService(otherReceivableMany);

Loading…
Cancel
Save