2025-10-20 10:17 설문내용 수정
This commit is contained in:
parent
cd746ce7a7
commit
e5b3614d96
@ -42,6 +42,7 @@ import kcc.let.sec.ram.service.EgovAuthorManageService;
|
||||
import kcc.let.uss.olp.qmc.service.EgovQustnrManageService;
|
||||
import kcc.let.uss.olp.qmc.service.QustnrManageVO;
|
||||
import kcc.let.uss.olp.qqm.service.EgovQustnrQestnManageService;
|
||||
import kcc.let.utl.fcc.service.EgovCryptoUtil;
|
||||
|
||||
/**
|
||||
* 설문관리를 처리하는 Controller Class 구현
|
||||
@ -105,6 +106,10 @@ public class EgovQustnrManageController {
|
||||
@Resource(name = "EgovFileMngService")
|
||||
private EgovFileMngService fileService;
|
||||
|
||||
//암복호화 유틸
|
||||
@Resource(name = "egovCryptoUtil")
|
||||
EgovCryptoUtil egovCryptoUtil;
|
||||
|
||||
/**
|
||||
* 설문관리 팝업 목록을 조회한다.
|
||||
* @param searchVO
|
||||
@ -214,6 +219,13 @@ public class EgovQustnrManageController {
|
||||
}
|
||||
|
||||
//paginationInfo.setTotalRecordCount( resultList.size()> 0 ? ((int)((EgovMap)resultList.get(0)).get("totcnt")) : 0);
|
||||
|
||||
for (int i=0;i<resultList.size();i++) {
|
||||
EgovMap em = (EgovMap)resultList.get(i);
|
||||
em.put("frstRegisterNm", egovCryptoUtil.decrypt(String.valueOf(em.get("frstRegisterNm"))));
|
||||
|
||||
}
|
||||
|
||||
model.addAttribute("resultList", resultList);
|
||||
model.addAttribute("paginationInfo", paginationInfo);
|
||||
|
||||
|
||||
@ -700,7 +700,7 @@
|
||||
<col style="width: 10%">
|
||||
<col style="width: 90px;">
|
||||
<col style="width: auto;">
|
||||
<col style="width: 180px;">
|
||||
<%-- <col style="width: 180px;"> --%>
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
@ -712,7 +712,7 @@
|
||||
<th>핸드폰</th>
|
||||
<th>신청일</th>
|
||||
<th>확정여부</th>
|
||||
<th>의뢰상태</th>
|
||||
<!-- <th>의뢰상태</th> -->
|
||||
<th>승인처리</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -753,13 +753,13 @@
|
||||
<td>
|
||||
<ve:code codeId="VE0003" code="${list.aprvlCd}"/>
|
||||
</td>
|
||||
<td>
|
||||
<ve:code codeId="VEA005" code="${list.reqStateCd}"/>
|
||||
<!-- <td> -->
|
||||
<%-- <ve:code codeId="VEA005" code="${list.reqStateCd}"/> --%>
|
||||
<!-- 취소요청 내용이 있고 미이수, 이수인 상태 -->
|
||||
<%-- <c:if test="${not empty list.cnclCn and (list.aplctStateCd eq 10 or list.aplctStateCd eq 20)}"> --%>
|
||||
<!-- (취소-반려) -->
|
||||
<%-- </c:if> --%>
|
||||
</td>
|
||||
<!-- </td> -->
|
||||
<td>
|
||||
<!-- 반려인 경우는 처리안되도록 check box을 노출하지 않는다. -->
|
||||
<c:choose>
|
||||
|
||||
@ -118,10 +118,18 @@ function addRow(){
|
||||
var oRow = itemTable.insertRow();
|
||||
th = document.createElement('th');
|
||||
th.innerHTML = itemTable.rows.length;;
|
||||
oRow.appendChild(th);
|
||||
|
||||
if (itemTable.rows.length>5){
|
||||
alert("문항은 5개 까지만 생성 가능합니다.");
|
||||
}else{
|
||||
oRow.appendChild(th);
|
||||
|
||||
var oCell2 = oRow.insertCell();
|
||||
oCell2.innerHTML = "<input type='text' name='iemCn' style='width:90%; float:left;' maxlength='50' />";
|
||||
}
|
||||
|
||||
var oCell2 = oRow.insertCell();
|
||||
oCell2.innerHTML = "<input type='text' name='iemCn' style='width:90%; float:left;' maxlength='50' />";
|
||||
//alert(itemTable.rows.length);
|
||||
|
||||
}
|
||||
function delRow(){
|
||||
if($("#appPlaceTy").val() == '3'){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user