|
@ -282,9 +282,11 @@ public class YkyyEntranceService {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public JSONArray getUnsettledPrescription() throws Exception{
|
|
|
String sql = "SELECT h.BRID,h.CFSB from HLW_CF01 h WHERE h.SPZT = 1 and h.FKZT = 0 and h.SJLY= 1 and h.SPRQ > (sysdate-1) ";
|
|
|
String sql = "SELECT h.BRID,h.CFSB,h.SJLY from v_ms_dd01 h WHERE h.SPZT = 1 and h.FKZT = 0 order by h.KFRQ desc ";
|
|
|
Map<String,Object> params = new HashedMap();
|
|
|
params.put("sql",sql);
|
|
|
params.put("page","1");
|
|
|
params.put("size","60");
|
|
|
HttpResponse response = HttpUtils.doGet(jdbcUrl,params);
|
|
|
|
|
|
String content = response.getContent();
|