old mode 100644
new mode 100755
| | |
| | | <mapper namespace="inspectionTaskServiceDaoImpl"> |
| | | |
| | | <!-- 保存活动信息 add by wuxw 2018-07-03 --> |
| | | <insert id="saveBusinessInspectionTaskInfo" parameterType="Map"> |
| | | insert into business_inspection_task( |
| | | plan_user_id,act_ins_time,plan_ins_time,act_user_name,operate,sign_type,inspection_plan_id,plan_user_name,community_id,b_id,act_user_id,task_id |
| | | ) values ( |
| | | #{planUserId},#{actInsTime},#{planInsTime},#{actUserName},#{operate},#{signType},#{inspectionPlanId},#{planUserName},#{communityId},#{bId},#{actUserId},#{taskId} |
| | | ) |
| | | </insert> |
| | | <insert id="saveBusinessInspectionTaskInfo" parameterType="Map"> |
| | | insert into business_inspection_task( |
| | | plan_user_id,act_ins_time,plan_ins_time,act_user_name,operate,sign_type,inspection_plan_id,plan_user_name,community_id,b_id,act_user_id,task_id,state |
| | | ) values ( |
| | | #{planUserId},#{actInsTime},#{planInsTime},#{actUserName},#{operate},#{signType},#{inspectionPlanId},#{planUserName},#{communityId},#{bId},#{actUserId},#{taskId},#{state} |
| | | ) |
| | | </insert> |
| | | |
| | | |
| | | <!-- 查询活动信息(Business) add by wuxw 2018-07-03 --> |
| | | <select id="getBusinessInspectionTaskInfo" parameterType="Map" resultType="Map"> |
| | | select t.plan_user_id,t.plan_user_id planUserId,t.act_ins_time,t.act_ins_time actInsTime,t.plan_ins_time,t.plan_ins_time planInsTime,t.act_user_name,t.act_user_name actUserName,t.operate,t.sign_type,t.sign_type signType,t.inspection_plan_id,t.inspection_plan_id inspectionPlanId,t.plan_user_name,t.plan_user_name planUserName,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,t.act_user_id,t.act_user_id actUserId,t.task_id,t.task_id taskId |
| | | from business_inspection_task t |
| | | where 1 =1 |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null and actInsTime != ''"> |
| | | and t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null and planInsTime != ''"> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="operate !=null and operate != ''"> |
| | | and t.operate= #{operate} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | <!-- 查询活动信息(Business) add by wuxw 2018-07-03 --> |
| | | <select id="getBusinessInspectionTaskInfo" parameterType="Map" resultType="Map"> |
| | | select t.plan_user_id,t.plan_user_id planUserId,t.act_ins_time,t.act_ins_time |
| | | actInsTime,t.plan_ins_time,t.plan_ins_time planInsTime,t.act_user_name,t.act_user_name |
| | | actUserName,t.operate,t.sign_type,t.sign_type signType,t.inspection_plan_id,t.inspection_plan_id |
| | | inspectionPlanId,t.plan_user_name,t.plan_user_name planUserName,t.community_id,t.community_id |
| | | communityId,t.b_id,t.b_id bId,t.act_user_id,t.act_user_id actUserId,t.task_id,t.task_id taskId,t.state |
| | | from business_inspection_task t |
| | | where 1 =1 |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null "> |
| | | and t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null "> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="operate !=null and operate != ''"> |
| | | and t.operate= #{operate} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | <if test="state !=null and state != ''"> |
| | | and t.state= #{state} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!-- 保存活动信息至 instance表中 add by wuxw 2018-07-03 --> |
| | | <insert id="saveInspectionTaskInfoInstance" parameterType="Map"> |
| | | insert into inspection_task( |
| | | plan_user_id,act_ins_time,plan_ins_time,status_cd,act_user_name,sign_type,inspection_plan_id,plan_user_name,community_id,b_id,act_user_id,task_id |
| | | ) select t.plan_user_id,t.act_ins_time,t.plan_ins_time,'0',t.act_user_name,t.sign_type,t.inspection_plan_id,t.plan_user_name,t.community_id,t.b_id,t.act_user_id,t.task_id from business_inspection_task t where 1=1 |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null and actInsTime != ''"> |
| | | and t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null and planInsTime != ''"> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | and t.operate= 'ADD' |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | plan_user_id,act_ins_time,plan_ins_time,status_cd,act_user_name,sign_type,inspection_plan_id,plan_user_name,community_id,b_id,act_user_id,task_id,state |
| | | ) select |
| | | t.plan_user_id,t.act_ins_time,t.plan_ins_time,'0',t.act_user_name,t.sign_type,t.inspection_plan_id,t.plan_user_name,t.community_id,t.b_id,t.act_user_id,t.task_id,t.state |
| | | from business_inspection_task t where 1=1 |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null"> |
| | | and t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null "> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | and t.operate= 'ADD' |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | <if test="state !=null and state != ''"> |
| | | and t.state= #{state} |
| | | </if> |
| | | |
| | | </insert> |
| | | |
| | | |
| | | |
| | | <!-- 查询活动信息 add by wuxw 2018-07-03 --> |
| | | <select id="getInspectionTaskInfo" parameterType="Map" resultType="Map"> |
| | | select t.plan_user_id,t.plan_user_id planUserId,t.act_ins_time,t.act_ins_time actInsTime,t.plan_ins_time,t.plan_ins_time planInsTime,t.status_cd,t.status_cd statusCd,t.act_user_name,t.act_user_name actUserName,t.sign_type,t.sign_type signType,t.inspection_plan_id,t.inspection_plan_id inspectionPlanId,t.plan_user_name,t.plan_user_name planUserName,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,t.act_user_id,t.act_user_id actUserId,t.task_id,t.task_id taskId |
| | | from inspection_task t |
| | | where 1 =1 |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null and actInsTime != ''"> |
| | | and t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null and planInsTime != ''"> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | | and t.status_cd= #{statusCd} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | order by t.create_time desc |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | |
| | | select t.plan_user_id,t.plan_user_id planUserId,t.act_ins_time,t.act_ins_time |
| | | actInsTime,t.plan_ins_time,t.plan_ins_time planInsTime,t.status_cd,t.status_cd |
| | | statusCd,t.act_user_name,t.act_user_name actUserName,t.sign_type,t.sign_type |
| | | signType,t.inspection_plan_id,t.inspection_plan_id inspectionPlanId,t.plan_user_name,t.plan_user_name |
| | | planUserName,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,t.act_user_id,t.act_user_id |
| | | actUserId,t.task_id,t.task_id taskId,t.state,td1.name signTypeName,td2.name stateName,ip.inspection_plan_name |
| | | inspectionPlanName |
| | | from inspection_task t,inspection_plan ip,t_dict td1,t_dict td2 |
| | | where 1 =1 |
| | | and t.sign_type = td1.status_cd |
| | | and td1.table_name = 'inspection_task' |
| | | and td1.table_columns = 'sign_type' |
| | | and t.state = td2.status_cd |
| | | and td2.table_name = 'inspection_task' |
| | | and td2.table_columns = 'state' |
| | | and ip.inspection_plan_id = t.inspection_plan_id |
| | | and ip.status_cd = '0' |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="startTime != null"> |
| | | and t.act_ins_time >= #{startTime} |
| | | </if> |
| | | <if test="endTime != null"> |
| | | and t.act_ins_time <= #{endTime} |
| | | </if> |
| | | <if test="planInsTime !=null "> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="todayPlanInsTime !=null "> |
| | | and t.plan_ins_time > #{todayPlanInsTime} |
| | | </if> |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | | and t.status_cd= #{statusCd} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="inspectionPlanName != null and inspectionPlanName != ''"> |
| | | and ip.inspection_plan_name = #{inspectionPlanName} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name like '%${planUserName}%' |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | <if test="state !=null and state != ''"> |
| | | and t.state= #{state} |
| | | </if> |
| | | <if test="states !=null "> |
| | | and t.state in |
| | | <foreach collection="states" item="item" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | <if test="scopeTime !=null "> |
| | | and t.create_time < #{scopeTime} |
| | | and t.create_time > #{createTime} |
| | | </if> |
| | | order by t.create_time desc |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | | |
| | | |
| | | <!-- 修改活动信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateInspectionTaskInfoInstance" parameterType="Map"> |
| | | update inspection_task t set t.status_cd = #{statusCd} |
| | | <if test="newBId != null and newBId != ''"> |
| | | ,t.b_id = #{newBId} |
| | | </if> |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | , t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null and actInsTime != ''"> |
| | | , t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null and planInsTime != ''"> |
| | | , t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | , t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | , t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | , t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | , t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | , t.community_id= #{communityId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | , t.act_user_id= #{actUserId} |
| | | </if> |
| | | where 1=1 <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | |
| | | update inspection_task t set t.status_cd = #{statusCd} |
| | | <if test="newBId != null and newBId != ''"> |
| | | ,t.b_id = #{newBId} |
| | | </if> |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | , t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="state !=null and state != ''"> |
| | | , t.state= #{state} |
| | | </if> |
| | | <if test="actInsTime !=null "> |
| | | , t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null "> |
| | | , t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | , t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | , t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | , t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | , t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | , t.community_id= #{communityId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | , t.act_user_id= #{actUserId} |
| | | </if> |
| | | where 1=1 |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | </update> |
| | | |
| | | <!-- 查询活动数量 add by wuxw 2018-07-03 --> |
| | | <select id="queryInspectionTasksCount" parameterType="Map" resultType="Map"> |
| | | select count(1) count |
| | | from inspection_task t |
| | | where 1 =1 |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="actInsTime !=null and actInsTime != ''"> |
| | | and t.act_ins_time= #{actInsTime} |
| | | </if> |
| | | <if test="planInsTime !=null and planInsTime != ''"> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | | and t.status_cd= #{statusCd} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name= #{planUserName} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | <select id="queryInspectionTasksCount" parameterType="Map" resultType="Map"> |
| | | select count(1) count |
| | | from inspection_task t,inspection_plan ip,t_dict td1,t_dict td2 |
| | | where 1 =1 |
| | | and t.sign_type = td1.status_cd |
| | | and td1.table_name = 'inspection_task' |
| | | and td1.table_columns = 'sign_type' |
| | | and t.state = td2.status_cd |
| | | and td2.table_name = 'inspection_task' |
| | | and td2.table_columns = 'state' |
| | | and ip.inspection_plan_id = t.inspection_plan_id |
| | | and ip.status_cd = '0' |
| | | <if test="planUserId !=null and planUserId != ''"> |
| | | and t.plan_user_id= #{planUserId} |
| | | </if> |
| | | <if test="startTime != null"> |
| | | and t.act_ins_time >= #{startTime} |
| | | </if> |
| | | <if test="endTime != null"> |
| | | and t.act_ins_time <= #{endTime} |
| | | </if> |
| | | <if test="planInsTime !=null "> |
| | | and t.plan_ins_time= #{planInsTime} |
| | | </if> |
| | | <if test="statusCd !=null and statusCd != ''"> |
| | | and t.status_cd= #{statusCd} |
| | | </if> |
| | | <if test="actUserName !=null and actUserName != ''"> |
| | | and t.act_user_name= #{actUserName} |
| | | </if> |
| | | <if test="signType !=null and signType != ''"> |
| | | and t.sign_type= #{signType} |
| | | </if> |
| | | <if test="inspectionPlanId !=null and inspectionPlanId != ''"> |
| | | and t.inspection_plan_id= #{inspectionPlanId} |
| | | </if> |
| | | <if test="inspectionPlanName != null and inspectionPlanName != ''"> |
| | | and ip.inspection_plan_name = #{inspectionPlanName} |
| | | </if> |
| | | <if test="planUserName !=null and planUserName != ''"> |
| | | and t.plan_user_name like '%${planUserName}%' |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | <if test="bId !=null and bId != ''"> |
| | | and t.b_id= #{bId} |
| | | </if> |
| | | <if test="actUserId !=null and actUserId != ''"> |
| | | and t.act_user_id= #{actUserId} |
| | | </if> |
| | | <if test="taskId !=null and taskId != ''"> |
| | | and t.task_id= #{taskId} |
| | | </if> |
| | | <if test="state !=null and state != ''"> |
| | | and t.state= #{state} |
| | | </if> |
| | | <if test="states !=null "> |
| | | and t.state in |
| | | <foreach collection="states" item="item" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | </select> |
| | | |
| | | <!-- 查询未安排的巡检计划 --> |
| | | <select id="queryTodayInspectionPlan" parameterType="Map" resultType="Map"> |
| | | SELECT |
| | | ip.inspection_plan_id inspectionPlanId, |
| | | ip.inspection_plan_name inspectionPlanName, |
| | | ip.inspection_plan_period inspectionPlanPeriod, |
| | | ip.sign_type signType, |
| | | ip.community_id communityId, |
| | | ip.end_time endTime, |
| | | ip.staff_id planUserId, |
| | | ip.staff_name planUserName |
| | | FROM |
| | | inspection_plan ip |
| | | inner join |
| | | LEFT JOIN inspection_task it ON ip.inspection_plan_id = it.inspection_plan_id |
| | | AND ip.staff_id = it.plan_user_id |
| | | AND it.status_cd = '0' |
| | | AND ip.community_id = it.community_id |
| | | <if test="inspectionPlanPeriod !=null and inspectionPlanPeriod == '2020023'"> |
| | | and it.plan_ins_time > DATE_SUB(curdate(),INTERVAL 7 DAY) |
| | | </if> |
| | | <if test="inspectionPlanPeriod !=null and inspectionPlanPeriod == '2020024'"> |
| | | and it.plan_ins_time > DATE_SUB(curdate(),INTERVAL 30 DAY) |
| | | </if> |
| | | WHERE |
| | | ip.status_cd = '0' |
| | | and ip.end_time > now() |
| | | and ip.start_time < now() |
| | | and ip.state = '2020025' |
| | | AND it.inspection_plan_id IS NOT NULL |
| | | and ip.community_id = #{communityId} |
| | | <if test="inspectionPlanPeriod !=null and inspectionPlanPeriod != ''"> |
| | | and ip.inspection_plan_period= #{inspectionPlanPeriod} |
| | | </if> |
| | | limit 1000 |
| | | </select> |
| | | |
| | | </select> |
| | | <!-- 保存活动信息 add by wuxw 2018-07-03 --> |
| | | <insert id="insertInspectionTask" parameterType="Map"> |
| | | insert into inspection_task( |
| | | plan_user_id,plan_ins_time,sign_type,inspection_plan_id,plan_user_name,community_id,b_id,task_id,state,ip_staff_id |
| | | ) values |
| | | <foreach collection="tasks" item="task" separator=","> |
| | | (#{task.planUserId},#{task.planInsTime},#{task.signType},#{task.inspectionPlanId},#{task.planUserName},#{task.communityId},'-1',#{task.taskId},'20200405',#{task.ipStaffId}) |
| | | </foreach> |
| | | </insert> |
| | | |
| | | <!-- 保存活动信息 add by wuxw 2018-07-03 --> |
| | | <insert id="insertInspectionTaskDetail" parameterType="Map"> |
| | | insert into inspection_task_detail( |
| | | task_detail_id,b_id,community_id,task_id,inspection_id,inspection_name,state |
| | | ) values |
| | | <foreach collection="tasks" item="task" separator=","> |
| | | (#{task.taskDetailId},'-1',#{task.communityId},#{task.taskId},#{task.inspectionId},#{task.inspectionName},'20200405') |
| | | </foreach> |
| | | </insert> |
| | | </mapper> |