|
|
|
@ -53,6 +53,10 @@
|
|
|
|
|
<if test="relKey != null">
|
|
|
|
|
AND relKey = #{relKey}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="unionRemark != null and unionRemark != ''">
|
|
|
|
|
AND (io.remark like concat('%', #{unionRemark}, '%')
|
|
|
|
|
or io.outSickInfo like concat('%', #{unionRemark}, '%'))
|
|
|
|
|
</if>
|
|
|
|
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''">
|
|
|
|
|
AND date_format(createTime, '%Y-%m-%d') between date_format(#{startTime}, '%Y-%m-%d') and date_format(#{endTime}, '%Y-%m-%d')
|
|
|
|
|
</if>
|
|
|
|
@ -205,6 +209,10 @@
|
|
|
|
|
<if test="relKey != null">
|
|
|
|
|
AND relKey = #{relKey}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="unionRemark != null and unionRemark != ''">
|
|
|
|
|
AND (io.remark like concat('%', #{unionRemark}, '%')
|
|
|
|
|
or io.outSickInfo like concat('%', #{unionRemark}, '%'))
|
|
|
|
|
</if>
|
|
|
|
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''">
|
|
|
|
|
AND date_format(createTime, '%Y-%m-%d') between date_format(#{startTime}, '%Y-%m-%d') and date_format(#{endTime}, '%Y-%m-%d')
|
|
|
|
|
</if>
|
|
|
|
@ -313,6 +321,10 @@
|
|
|
|
|
<if test="fromCorp != null and fromCorp != ''">
|
|
|
|
|
AND fromCorp = #{fromCorp}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="unionRemark != null and unionRemark != ''">
|
|
|
|
|
AND (io.remark like concat('%', #{unionRemark}, '%')
|
|
|
|
|
or io.outSickInfo like concat('%', #{unionRemark}, '%'))
|
|
|
|
|
</if>
|
|
|
|
|
<if test="customerId != null and customerId != ''">
|
|
|
|
|
AND customerId = #{customerId}
|
|
|
|
|
</if>
|
|
|
|
@ -460,6 +472,10 @@
|
|
|
|
|
<if test="busType != null">
|
|
|
|
|
AND io.busType = #{busType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="unionRemark != null and unionRemark != ''">
|
|
|
|
|
AND (io.remark like concat('%', #{unionRemark}, '%')
|
|
|
|
|
or io.outSickInfo like concat('%', #{unionRemark}, '%'))
|
|
|
|
|
</if>
|
|
|
|
|
<if test="inCodeStatus != null">
|
|
|
|
|
AND io.inCodeStatus = #{inCodeStatus}
|
|
|
|
|
</if>
|
|
|
|
@ -556,6 +572,4 @@
|
|
|
|
|
</otherwise>
|
|
|
|
|
</choose>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|
|
|
|
|