Commit f37cbd9a authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8

parents 99cd5287 419dc7e6
...@@ -155,10 +155,7 @@ public class TEmployeeProjectServiceImpl extends ServiceImpl<TEmployeeProjectMap ...@@ -155,10 +155,7 @@ public class TEmployeeProjectServiceImpl extends ServiceImpl<TEmployeeProjectMap
.eq(TEmployeeProject::getEmpIdcard, vo.getEmpIdcard()) .eq(TEmployeeProject::getEmpIdcard, vo.getEmpIdcard())
.eq(TEmployeeProject::getDeptNo, vo.getDeptNo()) .eq(TEmployeeProject::getDeptNo, vo.getDeptNo())
.eq(TEmployeeProject::getDeleteFlag, CommonConstants.STATUS_NORMAL) .eq(TEmployeeProject::getDeleteFlag, CommonConstants.STATUS_NORMAL)
.and(obj -> obj.ne(TEmployeeProject::getProjectSource, CommonConstants.ONE_STRING) .eq(TEmployeeProject::getProjectStatus, CommonConstants.ZERO_INT).last(CommonConstants.LAST_ONE_SQL));
.or().eq(TEmployeeProject::getProjectSource, CommonConstants.ONE_STRING)
.eq(TEmployeeProject::getStatus, CommonConstants.ONE_INT))
.last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(employeeProject)) { if (Common.isNotNull(employeeProject)) {
vo.setProjectTime(employeeProject.getCreateTime()); vo.setProjectTime(employeeProject.getCreateTime());
vo.setEmpProjectId(employeeProject.getId()); vo.setEmpProjectId(employeeProject.getId());
......
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
AND a.PROJECT_SOURCE = #{employeeRegistrationPre.dataSource} AND a.PROJECT_SOURCE = #{employeeRegistrationPre.dataSource}
</if> </if>
<if test="employeeRegistrationPre.customerUsernameNew != null and employeeRegistrationPre.customerUsernameNew.trim() != ''"> <if test="employeeRegistrationPre.customerUsernameNew != null and employeeRegistrationPre.customerUsernameNew.trim() != ''">
AND c.CS_NAME = #{employeeRegistration.customerUsernameNew} AND c.CS_NAME = #{employeeRegistrationPre.customerUsernameNew}
</if> </if>
<if test="employeeRegistrationPre.authSql != null and employeeRegistrationPre.authSql.trim() != ''"> <if test="employeeRegistrationPre.authSql != null and employeeRegistrationPre.authSql.trim() != ''">
${employeeRegistrationPre.authSql} ${employeeRegistrationPre.authSql}
......
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