조정사례 관리자 완료
This commit is contained in:
parent
2f2c91ada0
commit
3de50eb510
@ -106,6 +106,10 @@ public class AdjCsController {
|
|||||||
// if("N".equals(detailVO.getUseYn())) {
|
// if("N".equals(detailVO.getUseYn())) {
|
||||||
// return "redirect:/kccadr/glossary/glossaryList.do";
|
// 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";
|
return "kccadr/adjCs/adjCsDetail";
|
||||||
}
|
}
|
||||||
|
|||||||
@ -128,6 +128,20 @@
|
|||||||
<input type="text" id="glssrSubject" name="glssrSubject" value="<c:out value='${adjCsVO.csSubject}'/>" style="width:250px;"/>
|
<input type="text" id="glssrSubject" name="glssrSubject" value="<c:out value='${adjCsVO.csSubject}'/>" style="width:250px;"/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</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>
|
<tr>
|
||||||
<th class="req_text">
|
<th class="req_text">
|
||||||
<p>조정사례 내용</p>
|
<p>조정사례 내용</p>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user