FILE PLAN_NO 제거

This commit is contained in:
DESKTOP-6ARNG1Q\dlsgk 2025-03-04 15:27:29 +09:00
parent cdb2aaf525
commit 9f04d01e68

View File

@ -18,7 +18,7 @@
AND U.CATEGORY = UI.CATEGORY
WHERE U.OBJECT_NO = #{objectNo}
<if test="planNo != null and planNo != ''">
AND U.PLAN_NO = #{planNo}
AND UI.PLAN_NO = #{planNo}
</if>
<if test='(planNo == null or planNo == "" ) and planNoNullChkFlg == "1"'>
AND UI.PLAN_NO IS NULL
@ -55,7 +55,7 @@
AND UI.PLAN_NO = #{planNo}
</if>
<if test='(planNo == null or planNo == "" ) and planNoNullChkFlg == "1"'>
AND U.PLAN_NO IS NULL
AND UI.PLAN_NO IS NULL
</if>
<if test="no != null and no != ''">
AND U.NO = #{no}
@ -83,7 +83,6 @@
, DEL_FLG
, LAST_EDIT_DATETIME
, LAST_EDIT_USER
, PLAN_NO
) VALUES (
#{objectNo}
, #{no}
@ -94,7 +93,6 @@
, 0
, GETDATE()
, #{userId}
, #{planNo}
)
</insert>