From 1b7ed7edb09aaecf68ddf3396ee007bc6eadf52a Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期一, 30 十二月 2024 17:04:09 +0800 Subject: [PATCH] zjh202412030 --- ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjCustomerController.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjCustomerController.java b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjCustomerController.java index 0922451..31009db 100644 --- a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjCustomerController.java +++ b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjCustomerController.java @@ -496,7 +496,7 @@ String hospbm = sysConfigService.selectConfigByKey("common_api_service_hospbm"); HashMap<String, Object> isjd = new HashMap<>(); isjd.put("cusIdCard",tjCustomer.getCusIdcard()); -// isjd.put("compId",tjCustomer.getCompId()); + isjd.put("compId",""); String isCreat = HttpClientUtils.sendPost(apiUrl+"/api/his/"+hospbm+"/isCreat", isjd); JSONObject isCreatjsonObject = JSONUtil.parseObj(isCreat); if (isCreatjsonObject.getStr("code").equals("200")){ @@ -513,11 +513,11 @@ map.put("cusName",tjCustomer.getCusName()); map.put("cusSex",tjCustomer.getCusSex()); map.put("cusIdCard",tjCustomer.getCusIdcard()); - map.put("compId",tjCustomer.getCompId()); + map.put("compId",""); map.put("cusBrithday",tjCustomer.getCusBrithday() != null ? DateUtil.format(tjCustomer.getCusBrithday(), "yyyy-MM-dd") : ""); map.put("cusAddr",tjCustomer.getCusAddr()); map.put("cusPhone",tjCustomer.getCusPhone()); - map.put("compName",tjCustomer.getCompName()); + map.put("compName",""); String post = HttpClientUtils.sendPost(apiUrl+"/api/his/"+hospbm+"/creat", map); JSONObject jsonObject = JSONUtil.parseObj(post); if (jsonObject.getStr("code").equals("200")){ @@ -637,11 +637,11 @@ map.put("cusName",tjCustomer.getCusName()); map.put("cusSex",tjCustomer.getCusSex()); map.put("cusIdCard",tjCustomer.getCusIdcard()); - map.put("compId",tjCustomer.getCompId()); + map.put("compId",""); map.put("cusBrithday",tjCustomer.getCusBrithday() != null ? DateUtil.format(tjCustomer.getCusBrithday(), "yyyy-MM-dd") : ""); map.put("cusAddr",tjCustomer.getCusAddr()); map.put("cusPhone",tjCustomer.getCusPhone()); - map.put("compName",tjCustomer.getCompName()); + map.put("compName",""); String isCreat = HttpClientUtils.sendPost(apiUrl+"/api/his/"+hospbm+"/update", map); JSONObject isCreatjsonObject = JSONUtil.parseObj(isCreat); if (isCreatjsonObject.getStr("code").equals("200")){ -- Gitblit v1.8.0