Merge branch 'master' of
http://yongjoon.cho@vcs.iten.co.kr:9999/itnAdmin/fairnet Conflicts: src/main/resources/egovframework/sqlmap/config/mappers/trublcfrncmng/trublcfrncmng_sql.xml
This commit is contained in:
commit
bda22bbaef
@ -552,7 +552,7 @@ public class GwBaseController {
|
||||
params.put("sql", "nanumCfrncmanageSel1"); //사건 정보 - 성립수
|
||||
params.put("data1", JSPUtil.fixNull(bservice.select(params)));
|
||||
|
||||
params.put("sql", "trublcfrncmngCfrncmanageSelForGw"); //사건 정보 - 이름수
|
||||
params.put("sql", "trublcfrncmngCfrncmanageSel"); //사건 정보 - 이름수
|
||||
params.put("dataA", JSPUtil.fixNull(bservice.select(params)));
|
||||
|
||||
params.put("sql", "trublcfrncmngCfrncatndncSel"); //참여 위원 정보 - 참석자 정보
|
||||
|
||||
@ -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}
|
||||
@ -772,7 +773,6 @@
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
<!-- 기안을 위하여 casegubun 조건 추가 -->
|
||||
<select id="trublcfrncmngCfrncmanageSelForGw" parameterType="egovMap" resultType="egovMap">
|
||||
SELECT
|
||||
@ -1715,7 +1715,7 @@
|
||||
END AS MEMBER_NAME,
|
||||
(SELECT COUNT(*) FROM C_DLBRTMTR WHERE CASE_GUBUN = A.CASE_GUBUN AND CFRNC_NO = A.CFRNC_NO) AS DLBRTMTR_CNT,
|
||||
(SELECT COUNT(*) FROM C_ENDMTR WHERE CASE_GUBUN = A.CASE_GUBUN AND CFRNC_NO = A.CFRNC_NO) AS ENDMTR_CNT,
|
||||
FIX_DAY,
|
||||
REPLACE(FIX_DAY, 'null', '00') AS FIX_DAY,
|
||||
CONFERENCE_PLACE,
|
||||
CASE_GUBUN,
|
||||
(SELECT CODE_NAME FROM C_CODE WHERE CODE_IDXS = CASE_GUBUN) AS CASE_GUBUN_NM,
|
||||
@ -1765,7 +1765,7 @@
|
||||
</if>
|
||||
</if>
|
||||
AND DEL_YN = 'N'
|
||||
AND TO_DATE(FIX_DAY, 'YYYY-MM-DD HH24:MI') > SYSDATE
|
||||
AND TO_DATE(REPLACE(FIX_DAY, 'null', '00'), 'YYYY-MM-DD HH24:MI') > SYSDATE
|
||||
</where>
|
||||
ORDER BY FIX_DAY ASC
|
||||
<include refid="bottom2"/>
|
||||
|
||||
@ -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