Commit c8835290 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/develop' into develop

parents c435748b 35167683
......@@ -239,10 +239,10 @@
AND a.CONTRACT_END = #{tEmployeeContractInfo.contractEnd}
</if>
<if test="tEmployeeContractInfo.subjectDepart != null and tEmployeeContractInfo.subjectDepart.trim() != ''">
AND a.SUBJECT_DEPART = #{tEmployeeContractInfo.subjectDepart}
AND a.SUBJECT_DEPART like concat('%',#{tEmployeeContractInfo.subjectDepart},'%')
</if>
<if test="tEmployeeContractInfo.subjectUnit != null and tEmployeeContractInfo.subjectUnit.trim() != ''">
AND a.SUBJECT_UNIT = #{tEmployeeContractInfo.subjectUnit}
AND a.SUBJECT_UNIT like concat('%',#{tEmployeeContractInfo.subjectUnit},'%')
</if>
<if test="tEmployeeContractInfo.situation != null and tEmployeeContractInfo.situation.trim() != ''">
AND a.SITUATION = #{tEmployeeContractInfo.situation}
......@@ -374,7 +374,7 @@
AND a.EMP_NATRUE = #{tEmployeeContractInfo.empNatrue}
</if>
<if test="tEmployeeContractInfo.contractParty != null and tEmployeeContractInfo.contractParty.trim() != ''">
AND a.CONTRACT_PARTY = #{tEmployeeContractInfo.contractParty}
AND a.CONTRACT_PARTY like concat('%',#{tEmployeeContractInfo.contractParty},'%')
</if>
<if test="tEmployeeContractInfo.contractSubName != null and tEmployeeContractInfo.contractSubName.trim() != ''">
AND a.CONTRACT_SUB_NAME = #{tEmployeeContractInfo.contractSubName}
......
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