Commit d74aa8b0 authored by huyuchen's avatar huyuchen

huych-工行代发提交

parent 8ff8e2fe
...@@ -117,6 +117,9 @@ ...@@ -117,6 +117,9 @@
<sql id="employeeRegistrationPre_where"> <sql id="employeeRegistrationPre_where">
<if test="employeeRegistrationPre != null"> <if test="employeeRegistrationPre != null">
<if test="employeeRegistrationPre.id != null and employeeRegistrationPre.id.trim() != ''">
AND a.id = #{employeeRegistrationPre.id}
</if>
<if test="employeeRegistrationPre.employeeName != null and employeeRegistrationPre.employeeName.trim() != ''"> <if test="employeeRegistrationPre.employeeName != null and employeeRegistrationPre.employeeName.trim() != ''">
AND a.EMP_NAME like CONCAT('%',#{employeeRegistrationPre.employeeName},'%') AND a.EMP_NAME like CONCAT('%',#{employeeRegistrationPre.employeeName},'%')
</if> </if>
......
...@@ -1042,7 +1042,7 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -1042,7 +1042,7 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
searchVo.setAuthSql(null); searchVo.setAuthSql(null);
//获取项目信息 //获取项目信息
R<TSettleDomainRegistListVo> domainR = archivesDaprUtil.getAllDeptByCustomerLoginName(user.getUsername()); R<TSettleDomainRegistListVo> domainR = archivesDaprUtil.getAllDeptByCustomerLoginName(user.getUsername());
if (null != domainR && null != domainR.getData() && null != domainR.getData().getDeptNos()) { if (null != domainR && null != domainR.getData() && null != domainR.getData().getDeptNos() && domainR.getData().getDeptNos().size() > 0) {
searchVo.setDeptNoList(domainR.getData().getDeptNos()); searchVo.setDeptNoList(domainR.getData().getDeptNos());
} else { } else {
searchVo.setId(CommonConstants.ONE_STRING_NEGATE); searchVo.setId(CommonConstants.ONE_STRING_NEGATE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment