From 959a154ce0df9e029c6efaef8be38ca8dc699dad Mon Sep 17 00:00:00 2001 From: zhaowenxuan <chacca165@163.com> Date: 星期一, 07 七月 2025 17:13:50 +0800 Subject: [PATCH] 查看人员列表以及查看报告数据去除核收判断 --- ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjCustomerController.java | 3 ++- 1 files changed, 2 insertions(+), 1 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 def672b..1592fd9 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 @@ -269,6 +269,7 @@ // if(null !=tjReservation.getCompanyId())tjCustomer1.setDictCompId(Long.valueOf(tjReservation.getCompanyId())); if(null !=tjReservation.getCompany())tjCustomer1.setCompName(tjReservation.getCompany()); + if(null !=tjReservation.getDepartment())tjCustomer1.setDepartment(tjReservation.getDepartment()); // tjCustomerService.updateById(tjCustomer1); @@ -304,7 +305,7 @@ tjCustomer.setPym(PinyinUtil.getFirstLetter(tjReservation.getName(),"")); if(null !=tjReservation.getCompanyId())tjCustomer.setCompId(tjReservation.getCompanyId()); if(null !=tjReservation.getCompany())tjCustomer.setCompName(tjReservation.getCompany()); - + if(null !=tjReservation.getDepartment())tjCustomer.setDepartment(tjReservation.getDepartment()); if (null != key && key.equals("Y")) { AjaxResult result = controller.Outpincreateapply(tjCustomer); String result1 = getAjaxResult(result); -- Gitblit v1.8.0