DATE_FORMAT(f.CREATTIME, '%Y-%m-%d %H:%i:%s') as CREATTIME,
f.OPERATOR,
f.OPERATTIME,
f.STATE,
f.ISDELETE,
f.WORK_LONGITUDE,
f.WORK_LATITUDE,
f.CORPINFO_ID,
f.IS_SAFETY_DIRECTOR,
f.IS_GAS_TESTING,
f.SPARE,
f.HOTWORKAPPLICATION_ID,
u.NAME CREATORNAME,
d.NAME DEPARTMENTNAME,
ua.NAME OPERATORNAME
from
<includerefid="tableName"></include> f
LEFT JOIN bus_hotworkapplicationuser fu ON f.HOTWORKAPPLICATION_ID = fu.FOREIGN_KEY and f.STATE = fu.STATE
left join sys_user u on f.CREATOR = u.USER_ID
left join oa_department d on d.DEPARTMENT_ID = u.DEPARTMENT_ID
left join vi_user_all ua on ua.USER_ID = f.OPERATOR
left join sys_user uu on uu.USER_ID = #{pd.loginUserId} and uu.DEPARTMENT_ID = fu.USER_ID
where
<iftest="pd.STATE != null and pd.STATE != ''">
<iftest='pd.STATE == "10"'>
(
</if>
</if> f.ISDELETE = '0'
<iftest="pd.KEYWORDS != null and pd.KEYWORDS != ''">
and
( f.JOB_NUMBER LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
or f.HOT_WORK_POSITION LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
)
</if>
<iftest="pd.CORPINFO_ID != null and pd.CORPINFO_ID != ''">
and f.CORPINFO_ID = #{pd.CORPINFO_ID}
</if>
<iftest="pd.CREATOR != null and pd.CREATOR != ''">
and (f.CREATOR = #{pd.CREATOR})
</if>
<iftest="pd.HOT_WORK_LEVEL_INDEX != null and pd.HOT_WORK_LEVEL_INDEX != ''">
and (HOT_WORK_LEVEL_INDEX = #{pd.HOT_WORK_LEVEL_INDEX})
</if>
<iftest="pd.roleLevel != null and pd.roleLevel != ''"><!-- 权限显示 -->
<choose>
<whentest='pd.roleLevel == "0"'>
</when>
<whentest='pd.roleLevel == "1"'>
and f.HOTWORKAPPLICATION_ID in (select hu.FOREIGN_KEY from bus_hotworkapplicationuser hu LEFT JOIN vi_user_all bhuuser ON bhuuser.USER_ID = hu.USER_ID where bhuuser.DEPARTMENT_ID in (${pd.supDeparIds}) or u.DEPARTMENT_ID in (${pd.supDeparIds}) )
</when>
<whentest='pd.roleLevel == "2"'>
and f.HOTWORKAPPLICATION_ID in (select hu.FOREIGN_KEY from bus_hotworkapplicationuser hu where hu.USER_ID = #{pd.loginUserId}
<iftest="pd.STATE != null and pd.STATE != ''">
<choose>
<!-- State为99时,查询的是特级动火归档,此处查询的是,由我审批的数据 -->
<whentest='pd.STATE == "99"'>
and (hu.STATE in ('30','31','32','33','34'))
</when>
<whentest='pd.STATE == "98"'>
</when>
<otherwise>
and (hu.STATE = #{pd.STATE})
</otherwise>
</choose>
</if>
)
</when>
</choose>
</if>
<iftest="pd.myApprove != null and pd.myApprove != ''"><!-- 应该由我审批的数据 -->
and f.HOTWORKAPPLICATION_ID in (select hu.FOREIGN_KEY from bus_hotworkapplicationuser hu where hu.USER_ID = #{pd.myApprove}
<iftest="pd.STATE != null and pd.STATE != ''">
<choose>
<!-- State为99时,查询的是特级动火归档,此处查询的是,由我审批的数据 -->
<whentest='pd.STATE == "99"'>
and (hu.STATE in ('30','31','32','33','34'))
</when>
<whentest='pd.STATE == "98"'>
</when>
<otherwise>
and (hu.STATE = #{pd.STATE})
</otherwise>
</choose>
</if>
)
</if>
<iftest="pd.keyJobNumber != null and pd.keyJobNumber != ''">
and (f.JOB_NUMBER LIKE CONCAT(CONCAT('%', #{pd.keyJobNumber}),'%'))
</if>
<iftest="pd.applicantName != null and pd.applicantName != ''">
and (u.NAME LIKE CONCAT(CONCAT('%', #{pd.applicantName}),'%'))
</if>
<iftest="pd.keyState != null and pd.keyState != ''">
<!-- <if test='pd.keyState == "1"'>-->
<!-- and f.STATE = '11'-->
<!-- </if>-->
<!-- <if test='pd.keyState == "2"'>-->
<!-- and f.STATE = '12'-->
<!-- </if>-->
<!-- <if test='pd.keyState == "3"'>-->
<!-- and f.STATE = '2'-->
<!-- </if>-->
<!-- <if test='pd.keyState == "4"'>-->
<!-- and f.STATE = '-2'-->
<!-- </if>-->
and f.STATE = #{pd.keyState}
</if>
<iftest="pd.keyApplyUserName != null and pd.keyApplyUserName != ''"><!-- 申请人 -->
and f.HOTWORKAPPLICATION_ID in (select FOREIGN_KEY from bus_hotworkapplicationuser houtUser LEFT JOIN vi_user_all u on u.user_id = houtUser.USER_ID where u.USERNAME = CONCAT(CONCAT('%', #{pd.keyApplyUserName}),'%') and STATE = '11')
</if>
<iftest="pd.keyApproveUserName != null and pd.keyApproveUserName != ''"><!-- 申请人 -->
and f.HOTWORKAPPLICATION_ID in (select FOREIGN_KEY from bus_hotworkapplicationuser houtUser LEFT JOIN vi_user_all u on u.user_id = houtUser.USER_ID where u.USERNAME = CONCAT(CONCAT('%', #{pd.keyApproveUserName}),'%') and STATE = '12')
LEFT JOIN BUS_HOTWORKTOMEASURES hwtm on f.BUS_HOTWORK_MEASURES_ID = hwtm.BUS_HOTWORK_MEASURES_ID and hwtm.HOTWORKAPPLICATION_ID = #{HOTWORKAPPLICATION_ID}
WHERE f.ISDELETE = '0'
oRDER BY f.ORDERBY
</select>
<!-- 修改 -->
<updateid="editByState"parameterType="pd">
update
<includerefid="tableName"></include>
set
<iftest="ISDELETEOLD != null and ISDELETEOLD != ''">