Commit f00015e7b8efe151c71cb5ea850513808d22b612

Authored by liquanyu
1 parent bb8da6b7de

code update

Showing 1 changed file with 1 additions and 6 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ f00015e
... ... @@ -1331,14 +1331,10 @@
1331 1331 sql += " AND A.DOCTOR_NO = "+doctorNo;
1332 1332 }
1333 1333  
1334   - sql+=" and A.name='毕翠丽' order by A.EXAMINE_DATE DESC,A.Name ASC ";
  1334 + sql+=" order by A.EXAMINE_DATE DESC,A.Name ASC ";
1335 1335  
1336 1336 try {
1337 1337 List<Map<String,Object>> datas = JdbcUtil.getListDataBySql(sql);
1338   - for(Map<String,Object> m : datas)
1339   - {
1340   - logger.info(m + "");
1341   - }
1342 1338 OutputStream out = httpServletResponse.getOutputStream();
1343 1339 Map<String,String> cnames = new HashMap<>();
1344 1340 cnames.put("EXAMINE_DATE", "产检日期");
... ... @@ -1364,7 +1360,6 @@
1364 1360 cnames.put("SUGGESTION", "处理意见");
1365 1361 cnames.put("TEL_NO", "联系方式");
1366 1362 cnames.put("HOME_ADDR", "居住地");
1367   - logger.info(datas.size()+"==============");
1368 1363 httpServletResponse.setContentType("application/octet-stream");
1369 1364 httpServletResponse.setCharacterEncoding("UTF-8");
1370 1365 httpServletResponse.setHeader("Content-Disposition", "attachment;fileName=datas.xls");