|
@@ -73,6 +73,9 @@ public class LoanApplicationServiceImpl implements ILoanApplicationService {
|
|
private ReviewCommentsMapper reviewCommentsMapper;
|
|
private ReviewCommentsMapper reviewCommentsMapper;
|
|
@Resource
|
|
@Resource
|
|
private WaitRemindMapper waitRemindMapper;
|
|
private WaitRemindMapper waitRemindMapper;
|
|
|
|
+ @Resource
|
|
|
|
+ private SysDictDataMapper dictDataMapper;
|
|
|
|
+
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private RedisCache redisCache;
|
|
private RedisCache redisCache;
|
|
@@ -1006,11 +1009,22 @@ public class LoanApplicationServiceImpl implements ILoanApplicationService {
|
|
}
|
|
}
|
|
String loanApplicationNumber = loanApplication.getLoanApplicationNumber();
|
|
String loanApplicationNumber = loanApplication.getLoanApplicationNumber();
|
|
Map<String, Object> params = new HashMap<>();
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
|
+ //获取当前年、月、日
|
|
|
|
+ String year = DateUtils.getDate();
|
|
|
|
+ String month = DateUtils.getMonth();
|
|
|
|
+ String day = DateUtils.getDay();
|
|
|
|
+
|
|
String path = "/profile/mb/temporarily/" + loanApplicationNumber;
|
|
String path = "/profile/mb/temporarily/" + loanApplicationNumber;
|
|
//查询公司信息
|
|
//查询公司信息
|
|
SysUserEnterprise sysUserEnterprise = sysUserEnterpriseMapper.selectSysUserEnterpriseByEnterpriseId(loanApplication.getEnterpriseId());
|
|
SysUserEnterprise sysUserEnterprise = sysUserEnterpriseMapper.selectSysUserEnterpriseByEnterpriseId(loanApplication.getEnterpriseId());
|
|
params.put("loanApplication", loanApplication);
|
|
params.put("loanApplication", loanApplication);
|
|
params.put("sysUserEnterprise", sysUserEnterprise);
|
|
params.put("sysUserEnterprise", sysUserEnterprise);
|
|
|
|
+ //查询银行名称
|
|
|
|
+ String backName = dictDataMapper.selectDictLabel("shendai_bank", loanApplication.getApplicationBank());
|
|
|
|
+ params.put("backName", backName);
|
|
|
|
+ //获取当前年、月、日
|
|
|
|
+
|
|
|
|
+
|
|
String templatePath = RuoYiConfig.getProfile();
|
|
String templatePath = RuoYiConfig.getProfile();
|
|
String fileDir = RuoYiConfig.getProfile();
|
|
String fileDir = RuoYiConfig.getProfile();
|
|
String fileName = "";
|
|
String fileName = "";
|