이지우 - 협의회 등록/수정 시 개최일시에 null을 00으로 리플레이스 처리

This commit is contained in:
JIWOO 2025-01-08 11:02:30 +09:00
parent 6af923346c
commit 6a3f746da3
2 changed files with 4 additions and 3 deletions

View File

@ -439,7 +439,7 @@
#{conferenceGubun}, #{conferenceGubun},
'0501000000', '0501000000',
#{lunchCheck}, #{lunchCheck},
#{fixDay}, REPLACE(#{fixDay}, 'null', '00'),
#{conferencePlace}, #{conferencePlace},
SYSDATE, SYSDATE,
#{memberId}, #{memberId},
@ -731,7 +731,8 @@
, LUNCH_CHECK = #{lunchCheck} , LUNCH_CHECK = #{lunchCheck}
</if> </if>
<if test='fixDay neq "" and fixDay neq null'> <if test='fixDay neq "" and fixDay neq null'>
, FIX_DAY = #{fixDay} <!-- , FIX_DAY = #{fixDay} -->
, FIX_DAY = REPLACE(#{fixDay}, 'null', '00')
</if> </if>
<if test='conferencePlace neq "" and conferencePlace neq null'> <if test='conferencePlace neq "" and conferencePlace neq null'>
, CONFERENCE_PLACE = #{conferencePlace} , CONFERENCE_PLACE = #{conferencePlace}

View File

@ -549,7 +549,7 @@ function fn_checkList() {
<div class="form-inline"> <div class="form-inline">
<div class="form-group" style="vertical-align: middle;"> <div class="form-group" style="vertical-align: middle;">
<div class="calendar"> <div class="calendar">
<input type="text" class="form-element" style="width:160px !important;" id="fixDay" name="fixDay"/> <input type="text" class="form-element" style="width:160px !important;" id="fixDay" name="fixDay" readonly/>
</div> </div>
<!-- <input type="text" class="form-element" style="width:140px;" placeholder="시간(ex: 11:00)"/> --> <!-- <input type="text" class="form-element" style="width:140px;" placeholder="시간(ex: 11:00)"/> -->
</div> </div>