|
@ -269,8 +269,7 @@ public class EsbHttp {
|
|
|
header.put("User-Agent", "client " + HttpHelper.clientId);
|
|
|
if(json!=null && json.has("data")) {
|
|
|
JSONObject p = (JSONObject)json.getJSONArray("data").get(0);
|
|
|
if(!p.has(colName) || p.get(colName).equals(null) || p.getString(colName).length()==0)
|
|
|
{
|
|
|
if(!p.has(colName) || StringUtil.isEmpty(p.get(colName))) {
|
|
|
logger.info("注册病人信息请求失败:身份证号码为空,patient_id=" + patient.getPatientId() + ", event_no=" + patient.getEventNo());
|
|
|
return false;
|
|
|
}
|