|
@@ -102,9 +102,9 @@ public class DataService {
|
|
map.put("institution_id", "06300009");
|
|
map.put("institution_id", "06300009");
|
|
map.put("params", cloudjmStr);
|
|
map.put("params", cloudjmStr);
|
|
String content = postWithParameters(SAVE_REPORT_URL, map);
|
|
String content = postWithParameters(SAVE_REPORT_URL, map);
|
|
- String examlistStr = cloudjm2localjm(content);
|
|
|
|
- return examlistStr;
|
|
|
|
-
|
|
|
|
|
|
+ JSONObject jsonObject = JSON.parseObject(content);
|
|
|
|
+ String result = jsonObject.getString("msg");
|
|
|
|
+ return result;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -117,9 +117,9 @@ public class DataService {
|
|
map.put("institution_id", "06300009");
|
|
map.put("institution_id", "06300009");
|
|
map.put("params", cloudjmStr);
|
|
map.put("params", cloudjmStr);
|
|
String content = postWithParameters(UPDATE_PATIENT_URL, map);
|
|
String content = postWithParameters(UPDATE_PATIENT_URL, map);
|
|
- String examlistStr = cloudjm2localjm(content);
|
|
|
|
- return examlistStr;
|
|
|
|
-
|
|
|
|
|
|
+ JSONObject jsonObject = JSON.parseObject(content);
|
|
|
|
+ String result = jsonObject.getString("msg");
|
|
|
|
+ return result;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|