提交内容:BIP联调字段整体维护

备注:BIP联调字段整体维护
提交人:邹江涛
This commit is contained in:
zoujiangtao 2024-12-30 10:34:09 +08:00
parent 79a471eb37
commit 06fc641a5f
1 changed files with 13 additions and 0 deletions

View File

@ -551,6 +551,19 @@ public class ApiService {
} }
} else if ("description1".equals(parts[0])) { } else if ("description1".equals(parts[0])) {
value = billObject.getLocaleString("description").getLocaleValue(); value = billObject.getLocaleString("description").getLocaleValue();
} else if ("payeebankname1".equals(parts[0])) {
String payeebankname = billObject.getString("payeebankname");
if (payeebankname != null && !payeebankname.isEmpty()) {
int index = payeebankname.indexOf("银行");
if (index != -1) {
String result = payeebankname.substring(0, index + 2);
System.out.println(result);
} else {
value = "";
}
} else {
value = "";
}
} else { } else {
value = billObject.get(parts[0]); value = billObject.get(parts[0]);
} }