Commit 140c279b16411b5575417cc06acd63a589d51932
1 parent
81adeb51bc
Exists in
master
and in
6 other branches
update code
Showing 4 changed files with 0 additions and 12 deletions
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/CouponPrintController.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/HospitalCouponPrintUtils.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/LisHandleTask.java
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/CouponPrintController.java
View file @
140c279
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java
View file @
140c279
| ... | ... | @@ -702,10 +702,7 @@ |
| 702 | 702 | final CopyOnWriteArraySet<String> patientIds = new CopyOnWriteArraySet<>(); |
| 703 | 703 | List<Map<String,String>> lists = new ArrayList<>(); |
| 704 | 704 | |
| 705 | - long start = System.currentTimeMillis(); | |
| 706 | 705 | List<LisReportModel> lises = lisService.queryLisDataByStatus(query); |
| 707 | - long end1 = System.currentTimeMillis(); | |
| 708 | - System.out.println("get lis data times "+(end1 - start)); | |
| 709 | 706 | if (CollectionUtils.isNotEmpty(lises)) |
| 710 | 707 | { |
| 711 | 708 | Map<String, String> map = new HashMap<>(); |
| ... | ... | @@ -748,7 +745,6 @@ |
| 748 | 745 | } |
| 749 | 746 | } |
| 750 | 747 | long end2 = System.currentTimeMillis(); |
| 751 | - System.out.println("get lis all times "+(end2 - start)); | |
| 752 | 748 | patientIds.clear(); |
| 753 | 749 | |
| 754 | 750 | result.put("list", lists); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/HospitalCouponPrintUtils.java
View file @
140c279
| ... | ... | @@ -71,9 +71,7 @@ |
| 71 | 71 | */ |
| 72 | 72 | public static String qhdCouponUse(QhdDjq model){ |
| 73 | 73 | String json = JsonUtil.obj2Str(model); |
| 74 | - System.out.println(json); | |
| 75 | 74 | String result = HttpClientUtil.doPost("http://localhost:9090/his/insertQhdfycjDjq", json, "utf-8"); |
| 76 | - System.out.println("result= "+result); | |
| 77 | 75 | return result; |
| 78 | 76 | } |
| 79 | 77 | |
| ... | ... | @@ -88,7 +86,6 @@ |
| 88 | 86 | Map<String,String> param = new HashMap<>(); |
| 89 | 87 | param.put("code", code); |
| 90 | 88 | String result = com.lyms.platform.common.utils.HttpClientUtil.doGet("http://localhost:9090/his/queryCouponByCode", param, "utf-8",null); |
| 91 | - System.out.println("result= "+result); | |
| 92 | 89 | if ("0".equals(result)) |
| 93 | 90 | { |
| 94 | 91 | return true; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/LisHandleTask.java
View file @
140c279
| ... | ... | @@ -49,7 +49,6 @@ |
| 49 | 49 | { |
| 50 | 50 | map.put("hospitalName",hospitalMap.get(lisReportModel.getHospitalId())); |
| 51 | 51 | } |
| 52 | - long start = System.currentTimeMillis(); | |
| 53 | 52 | List<Patients> list = new ArrayList<>(); |
| 54 | 53 | |
| 55 | 54 | PatientsQuery patientsQuery=new PatientsQuery(); |
| ... | ... | @@ -65,9 +64,6 @@ |
| 65 | 64 | patientsQuery.setPhone(lisReportModel.getPhone()); |
| 66 | 65 | list.addAll(patientsService.queryPatient1(patientsQuery, "modified")); |
| 67 | 66 | } |
| 68 | - | |
| 69 | - long end = System.currentTimeMillis(); | |
| 70 | - System.out.println("patient time "+ (end-start)); | |
| 71 | 67 | if (CollectionUtils.isNotEmpty(list)) |
| 72 | 68 | { |
| 73 | 69 | StringBuffer sb = new StringBuffer(); |