|
|
@ -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; |
|
|
|
} |
|
|
|