You need to sign in or sign up before continuing.
Commit a97cf970 authored by hongguangwu's avatar hongguangwu

1.7.19-合同审核放开作废、终止,允许审核

parent dbce2f03
...@@ -446,13 +446,13 @@ ...@@ -446,13 +446,13 @@
</where> </where>
order by a.APPLY_NO desc order by a.APPLY_NO desc
</select> </select>
<!--审核列表--> <!--审核列表 电子签不要审核,但是作废、终止的要审核-->
<select id="getTEmployeeContractInfoPageByAudit" resultMap="tEmployeeContrctInfoMap"> <select id="getTEmployeeContractInfoPageByAudit" resultMap="tEmployeeContrctInfoMap">
SELECT SELECT
<include refid="Base_Column_List"/> <include refid="Base_Column_List"/>
FROM t_employee_contract_info a FROM t_employee_contract_info a
<where> <where>
a.DELETE_FLAG = 0 and (a.sign_type is null or a.sign_type = '1') a.DELETE_FLAG = 0 and (a.sign_type is null or a.sign_type = '1' or a.SITUATION in ('作废','终止') )
<include refid="tEmployeeContractInfo_where"/> <include refid="tEmployeeContractInfo_where"/>
<if test="tEmployeeContractInfo.authSql != null and tEmployeeContractInfo.authSql.trim() != ''"> <if test="tEmployeeContractInfo.authSql != null and tEmployeeContractInfo.authSql.trim() != ''">
${tEmployeeContractInfo.authSql} ${tEmployeeContractInfo.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