|
@ -87,7 +87,6 @@ public class JwPrescriptionService {
|
|
|
params.add(new BasicNameValuePair("applyTimeFrom", applyTimeFrom));
|
|
|
params.add(new BasicNameValuePair("applyTimeEnd", applyTimeEnd));
|
|
|
|
|
|
|
|
|
// String response = httpClientUtil.post(url, params, "UTF-8");
|
|
|
String sql = "SELECT h.response from wlyy_http_log h WHERE h.id = 806287";
|
|
|
List<Map<String ,Object>> list = jdbcTemplate.queryForList(sql);
|
|
@ -96,7 +95,6 @@ public class JwPrescriptionService {
|
|
|
jsonObject.put("status",200);
|
|
|
jsonObject.put("data",response);
|
|
|
response = jsonObject.toString();
|
|
|
|
|
|
return response;
|
|
|
}
|
|
|
|
|
@ -147,11 +145,12 @@ public class JwPrescriptionService {
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public String getDispUnSettleFeeInfoList(String cardNo,String visitNo) throws Exception{
|
|
|
public String getDispUnSettleFeeInfoList(String cardNo,String visitNo,String recipeNo) throws Exception{
|
|
|
String url = jwUrl + "/third/prescription/getDispUnSettleFeeInfoList";
|
|
|
List<NameValuePair> params = new ArrayList<>();
|
|
|
params.add(new BasicNameValuePair("cardNo", cardNo));
|
|
|
params.add(new BasicNameValuePair("visitNo", visitNo));
|
|
|
params.add(new BasicNameValuePair("recipeNo", recipeNo));
|
|
|
|
|
|
String response = httpClientUtil.post(url, params, "UTF-8");
|
|
|
|