이지우 - 협의회 등록/수정 시 개최일시에 null을 00으로 리플레이스 처리
This commit is contained in:
parent
6af923346c
commit
6a3f746da3
@ -439,7 +439,7 @@
|
||||
#{conferenceGubun},
|
||||
'0501000000',
|
||||
#{lunchCheck},
|
||||
#{fixDay},
|
||||
REPLACE(#{fixDay}, 'null', '00'),
|
||||
#{conferencePlace},
|
||||
SYSDATE,
|
||||
#{memberId},
|
||||
@ -731,7 +731,8 @@
|
||||
, LUNCH_CHECK = #{lunchCheck}
|
||||
</if>
|
||||
<if test='fixDay neq "" and fixDay neq null'>
|
||||
, FIX_DAY = #{fixDay}
|
||||
<!-- , FIX_DAY = #{fixDay} -->
|
||||
, FIX_DAY = REPLACE(#{fixDay}, 'null', '00')
|
||||
</if>
|
||||
<if test='conferencePlace neq "" and conferencePlace neq null'>
|
||||
, CONFERENCE_PLACE = #{conferencePlace}
|
||||
|
||||
@ -549,7 +549,7 @@ function fn_checkList() {
|
||||
<div class="form-inline">
|
||||
<div class="form-group" style="vertical-align: middle;">
|
||||
<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>
|
||||
<!-- <input type="text" class="form-element" style="width:140px;" placeholder="시간(ex: 11:00)"/> -->
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user