조정사례 관리자 완료

This commit is contained in:
hylee 2024-02-07 17:59:39 +09:00
parent 2f2c91ada0
commit 3de50eb510
2 changed files with 18 additions and 0 deletions

View File

@ -106,6 +106,10 @@ public class AdjCsController {
// if("N".equals(detailVO.getUseYn())) {
// return "redirect:/kccadr/glossary/glossaryList.do";
// }
ComDefaultCodeVO vo = new ComDefaultCodeVO();
vo.setCodeId("CC201");
List<?> cmmCode = cmmUseService.selectCmmCodeDetail(vo);
model.addAttribute("cmmCode", cmmCode);
return "kccadr/adjCs/adjCsDetail";
}

View File

@ -128,6 +128,20 @@
<input type="text" id="glssrSubject" name="glssrSubject" value="<c:out value='${adjCsVO.csSubject}'/>" style="width:250px;"/>
</td>
</tr>
<tr>
<th class="req_text">
<p>분류</p>
</th>
<td colspan="3">
<select id="csCategory" name="csCategory">
<c:forEach items="${cmmCode}" var="item">
<option value="${item.code }" <c:if test="${adjCsVO.csCategory eq item.code }">selected="selected"</c:if> >${item.codeNm }</option>
</c:forEach>
</select>
</td>
</tr>
<tr>
<th class="req_text">
<p>조정사례 내용</p>