|
@@ -201,7 +201,8 @@
|
|
|
update_time = #{wbsTP.updateTime},
|
|
|
mix_ratio_test_ids = #{wbsTP.mixRatioTestIds},
|
|
|
is_concrete = #{wbsTP.isConcrete},
|
|
|
- is_expernode = #{wbsTP.isExpernode},
|
|
|
+ is_expernode = #{wbsTP.isExpernode},
|
|
|
+ is_add_conceal = #{wbsTP.isAddConceal},
|
|
|
status = 1,
|
|
|
is_deleted = 0
|
|
|
where p_key_id = #{pKeyId}
|
|
@@ -885,6 +886,12 @@
|
|
|
update m_wbs_tree_private set jler_tree_id = #{pkeyid} where p_key_id = #{item} and is_deleted=0 and `type` = 1
|
|
|
</foreach>
|
|
|
</update>
|
|
|
+ <update id="batchUpdateIsAddConceal">
|
|
|
+ update m_wbs_tree_private
|
|
|
+ set is_add_conceal = #{private.isAddConceal}
|
|
|
+ where project_id = #{private.projectId}
|
|
|
+ and FIND_IN_SET(#{private.id},ancestors) > 0
|
|
|
+ </update>
|
|
|
|
|
|
<select id="linkNodeTreeBynodeId" resultType="java.lang.Long" >
|
|
|
select p_key_id from m_wbs_tree_private where (yzer_tree_id = #{pkeyid} or jler_tree_id = #{pkeyid}) and `type` = 1 and is_deleted = 0
|