Browse Source

导入贷后历史数据4.0

master
fanzongzhe 10 months ago
parent
commit
9b77f759cf
  1. 8
      anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java

8
anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java

@ -4902,7 +4902,13 @@ public class LoanRepaymentScheduleService extends MybatisBaseService<LoanRepayme
if (null != orgDept) {
customerNoPrefix = customerNoPrefix + orgDept.getOrgCode();
}
customerNoPrefix = customerNoPrefix + mobile + HanZiConverterPinYin.getPinYinFirst(name);
String customerNo = "";
try {
customerNo = HanZiConverterPinYin.getPinYinFirst(name);
} catch (Throwable t) {
t.printStackTrace();
}
customerNoPrefix = customerNoPrefix + mobile + customerNo;
System.out.println(customerNoPrefix.length() > 30 ? customerNoPrefix.substring(0, 30) : customerNoPrefix);
return customerNoPrefix.length() > 30 ? customerNoPrefix.substring(0, 30) : customerNoPrefix;
}

Loading…
Cancel
Save