|
|
@@ -541,9 +541,13 @@ public class PsExeExcelUtil {
|
|
541
|
541
|
if (dto.getCombinedPaymentInfo() == null || dto.getCombinedPaymentInfo().trim().isEmpty()) {
|
|
542
|
542
|
errorLogList.add("收款/受益人名称+银行名称+银行账号为空");
|
|
543
|
543
|
}else {
|
|
544
|
|
- String[] strings = splitCombinedField(dto.getCombinedPaymentInfo());
|
|
545
|
|
- if("无".equals(strings[1])||"无".equals(strings[2])){
|
|
546
|
|
- errorLogList.add("银行名称/账号为空,需要申请客商银行信息");
|
|
|
544
|
+ if (dto.getCombinedPaymentInfo().contains(",")||dto.getCombinedPaymentInfo().contains(",")) {
|
|
|
545
|
+ String[] strings = splitCombinedField(dto.getCombinedPaymentInfo());
|
|
|
546
|
+ if ("无".equals(strings[1]) || "无".equals(strings[2])) {
|
|
|
547
|
+ errorLogList.add("银行名称/账号为空,需要申请客商银行信息");
|
|
|
548
|
+ }
|
|
|
549
|
+ }else {
|
|
|
550
|
+ errorLogList.add("收款/受益人信息格式错误,请按照收款/受益人名称+银行名称+银行账号格式填写,不可缺少");
|
|
547
|
551
|
}
|
|
548
|
552
|
}
|
|
549
|
553
|
|