@ -331,7 +331,7 @@ public class LoanHomevisitInvestigateService extends MybatisBaseService<LoanHome
public ResultBean saveAppointmentInfo ( LoanHomeVisitInvestigateReservationDto dto ) {
ResultBean rb = ResultBean . fireFail ( ) ;
baseMapper . saveAppointmentInfo ( dto . getSid ( ) , dto . getTimes ( ) , dto . getAdress ( ) ) ;
baseMapper . saveAppointmentInfo ( dto . getSid ( ) , dto . getTimes ( ) , dto . getAdd ress ( ) ) ;
return rb . success ( ) ;
}
@ -474,6 +474,8 @@ public class LoanHomevisitInvestigateService extends MybatisBaseService<LoanHome
loanHomeVisitInvestigateInitCustomerVo . setLenderNam ( busSalesOrderBorrowerDetailsVo . getBorrowerName ( ) ) ;
loanHomeVisitInvestigateInitCustomerVo . setIdNumber ( crmCustomerTempVo . getIDNumber ( ) ) ;
loanHomeVisitInvestigateInitCustomerVo . setMobile ( busSalesOrderBorrowerDetailsVo . getMobile ( ) ) ;
loanHomeVisitInvestigateInitCustomerVo . setMainSid ( sid ) ;
return rb . success ( ) . setData ( loanHomeVisitInvestigateInitCustomerVo ) ;
}
//银行卡附件
List < LoanHomevisitInvestigateFileDetailsVo > loanHomevisitInvestigateFileDetailsVos = loanHomevisitInvestigateFileService . selByMainSidAndTypeKey ( sid , LoanAttachTypeEnum . YHK . getAttachType ( ) ) ;
@ -487,6 +489,7 @@ public class LoanHomevisitInvestigateService extends MybatisBaseService<LoanHome
//其他人员
List < LoanHomeVisitInvestigateInitOtherPeoVo > loanHomeVisitInvestigateInitOtherPeoVos = loanHomevisitInvestigateOtherpeoService . selByMainSid ( sid ) ;
loanHomeVisitInvestigateInitCustomerVo . setOtherPersonnel ( loanHomeVisitInvestigateInitOtherPeoVos ) ;
loanHomeVisitInvestigateInitCustomerVo . setMainSid ( sid ) ;
return rb . success ( ) . setData ( loanHomeVisitInvestigateInitCustomerVo ) ;
}
@ -529,6 +532,7 @@ public class LoanHomevisitInvestigateService extends MybatisBaseService<LoanHome
loanHomevisitInvestigateCustomerDto . setEmergencyMobile ( dto . getEmergencyContactMobile ( ) ) ;
loanHomevisitInvestigateCustomerDto . setRelationshipKey ( dto . getEmergencyContactTypeKey ( ) ) ;
loanHomevisitInvestigateCustomerDto . setRelationshipValue ( dto . getEmergencyContactType ( ) ) ;
loanHomevisitInvestigateCustomerDto . setMainSid ( dto . getMainSid ( ) ) ;
loanHomevisitInvestigateCustomerService . saveOrUpdateDto ( loanHomevisitInvestigateCustomerDto ) ;
loanHomevisitInvestigateOtherpeoService . delByMainSid ( dto . getMainSid ( ) ) ;
for ( LoanHomeVisitInvestigateSaveOtherPeoDto loanHomeVisitInvestigateSaveOtherPeoDto : otherPersonnel ) {