|
|
|
@ -27,7 +27,7 @@
|
|
|
|
|
<label for="codeId">코드그룹</label>
|
|
|
|
|
</th>
|
|
|
|
|
|
|
|
|
|
<td nowrap colspan="3">
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<c:if test="${!isUpdate}">
|
|
|
|
|
<select style="width: 40%" name="clCode" id="clCode" class="select" title="분류코드">
|
|
|
|
|
<c:forEach var="result" items="${cfnCodeList}" varStatus="status">
|
|
|
|
@ -43,13 +43,10 @@
|
|
|
|
|
<input type="hidden" id="codeId" name="codeId" value="${cmmnDetailCode.codeId}">
|
|
|
|
|
</c:if>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="required" scope="row" nowrap>
|
|
|
|
|
<label for="code">코드</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap colspan="3">
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<form:input path="code" size="15" maxlength="15" readonly="${isUpdate}"/>
|
|
|
|
|
<form:errors path="code"/>
|
|
|
|
|
</td>
|
|
|
|
@ -58,21 +55,51 @@
|
|
|
|
|
<th class="required" scope="row" nowrap>
|
|
|
|
|
<label for="codeNm">코드명</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap="nowrap" colspan="3">
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<form:input path="codeNm" size="60" maxlength="60"/>
|
|
|
|
|
<form:errors path="codeNm"/>
|
|
|
|
|
</td>
|
|
|
|
|
<th class="required" scope="row" nowrap>
|
|
|
|
|
<label for="ordr">정렬순서</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<form:input path="ordr" size="2" maxlength="2" />
|
|
|
|
|
<form:errors path="ordr"/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="required" scope="row" nowrap>
|
|
|
|
|
<label for="useAt">사용여부</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap class="title_left" colspan="3">
|
|
|
|
|
<td nowrap class="title_left">
|
|
|
|
|
<form:select path="useAt">
|
|
|
|
|
<form:option value="Y" label="사용"/>
|
|
|
|
|
<form:option value="N" label="미사용"/>
|
|
|
|
|
</form:select>
|
|
|
|
|
</td>
|
|
|
|
|
<th scope="row" nowrap>
|
|
|
|
|
<label for="etc1">확장1</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<form:input path="etc1" size="15" maxlength="15"/>
|
|
|
|
|
<form:errors path="etc1"/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="row" nowrap>
|
|
|
|
|
<label for="etc2">확장2</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<form:input path="etc2" size="15" maxlength="15"/>
|
|
|
|
|
<form:errors path="etc2"/>
|
|
|
|
|
</td>
|
|
|
|
|
<th scope="row" nowrap>
|
|
|
|
|
<label for="etc3">확장3</label>
|
|
|
|
|
</th>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<form:input path="etc3" size="15" maxlength="15"/>
|
|
|
|
|
<form:errors path="etc3"/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="required" scope="row">
|
|
|
|
@ -83,6 +110,7 @@
|
|
|
|
|
<form:errors path="codeDc"/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</form:form>
|
|
|
|
|