|
|
|
@ -103,7 +103,7 @@ |
|
|
|
( #{item}) |
|
|
|
</foreach> |
|
|
|
</update> |
|
|
|
<update id="batchRelTasksWithPhase" parameterType="HashMap"> |
|
|
|
<update id="batchRelTasksWithMenu" parameterType="HashMap"> |
|
|
|
update xm_task res set res.menu_id=${menuId},res.menu_name =${menuName} res.product_id=#{productId} |
|
|
|
where res.id in |
|
|
|
<foreach collection="taskIds" item="item" index="index" open="(" separator="," close=")" > |
|
|
|
@ -112,6 +112,14 @@ |
|
|
|
and res.ntype='0' |
|
|
|
</update> |
|
|
|
|
|
|
|
<update id="batchRelTasksWithPhase" parameterType="com.xm.core.vo.BatchRelTasksWithPhase"> |
|
|
|
update xm_task res set res.project_phase_id=${projectPhaseId} |
|
|
|
where res.id in |
|
|
|
<foreach collection="taskIds" item="item" index="index" open="(" separator="," close=")" > |
|
|
|
( #{item}) |
|
|
|
</foreach> |
|
|
|
and res.ntype='0' |
|
|
|
</update> |
|
|
|
<!-- 插入流程审批表数据 --> |
|
|
|
<insert id="insertProcessApprova" |
|
|
|
parameterType="HashMap" |
|
|
|
|