提交 4ca6fc90 authored 作者: huyufan's avatar huyufan

Merge remote-tracking branch 'origin/v10.7_borrowing_and_repayment_20240118' into test

Former-commit-id: 3580e6b0
...@@ -41,6 +41,7 @@ public class EventListenerComponent { ...@@ -41,6 +41,7 @@ public class EventListenerComponent {
OrderChildLoanRetryRecord entity = new OrderChildLoanRetryRecord(); OrderChildLoanRetryRecord entity = new OrderChildLoanRetryRecord();
entity.setSettlementOwnerId(settlementOwnerDetail.getId()); entity.setSettlementOwnerId(settlementOwnerDetail.getId());
entity.setSettlementDriverId(settlementDriverDetail.getId()); entity.setSettlementDriverId(settlementDriverDetail.getId());
entity.setOwnerUserNo(settlementOwnerDetail.getOwnerUserNo());
// 保存重试记录 // 保存重试记录
orderChildLoanRetryRecordDao.saveEntity(entity); orderChildLoanRetryRecordDao.saveEntity(entity);
} }
......
...@@ -382,7 +382,7 @@ public class OwnerLoanRecordServiceImpl implements OwnerLoanRecordService { ...@@ -382,7 +382,7 @@ public class OwnerLoanRecordServiceImpl implements OwnerLoanRecordService {
PerformanceResultEnum.DATA_NOT_FIND); PerformanceResultEnum.DATA_NOT_FIND);
CarrierCashierInfoVO vo = ownerLoanRecordStruct.convertCashierInfo(ownerLoanRecord); CarrierCashierInfoVO vo = ownerLoanRecordStruct.convertCashierInfo(ownerLoanRecord);
Borrower borrower = borrowerDao.getEntityByKey(ownerLoanRecord.getBorrowerId()).orElseThrow(PerformanceResultEnum.DATA_NOT_FIND); Borrower borrower = borrowerDao.getEntityByKey(ownerLoanRecord.getBorrowerId()).orElseThrow(PerformanceResultEnum.DATA_NOT_FIND);
if (Objects.equals(borrower.getDeleteStatus(), DeleteStatusEnum.NO.getCode())) { if (Objects.equals(borrower.getDeleteStatus(), DeleteStatusEnum.YES.getCode())) {
throw new ServiceSystemException(PerformanceResultEnum.DATA_NOT_FIND); throw new ServiceSystemException(PerformanceResultEnum.DATA_NOT_FIND);
} }
vo.setOrderPayWay(false); vo.setOrderPayWay(false);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论