Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssEditITerm.jsp @ 50:096de0e44504

History | View | Annotate | Download (3.24 KB)

1
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/tld/struts-bean-el" prefix="beanEL" %>
4
<%@ taglib uri="/WEB-INF/tld/struts-logic" prefix="logic" %>
5
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL" %>
6
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
7

    
8

    
9
<%@page import="java.util.HashMap"%>
10

    
11
<h3 class="title"><STRONG><bean:message key="title_sub_edit_i_term"/></STRONG></h3><br/>
12
<table id="errorTable">
13
<tr>
14
	<td>
15
		<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
16
	</td>
17
</tr>
18
</table>
19

    
20
<bean:define id="viewBean" name="contentForm" property="contentsBean"/>
21
<htmlEL:form action="/ss105/updateiTerm.do">
22
<table class="tabularForm">
23
	<tr>
24
		<td colspan="3">&nbsp;</td>
25
	</tr>
26
	<tr>
27
		<td width="10%">&nbsp;</td>
28
		<td width="45%"><bean:message key="content_product_code"/>:</td>
29
		<td><strong><c:out value="${contentForm.map.insProductCode}"/></strong></td>
30
	</tr>
31
	<tr>
32
		<td width="10%">&nbsp;</td>
33
		<td width="45%"><bean:message key="content_ins_term"/>:</td>
34
		<td><htmlEL:text property="insTerm" name="contentForm" maxlength="2" autocomplete="off"/></td>
35
	</tr>
36
	<tr>
37
		<td width="10%">&nbsp;</td>
38
		<td width="45%"><bean:message key="content_ins_term_code"/>:</td>
39
		<td>
40
			<htmlEL:select property="insTermCode" name="contentForm">
41
				<logicEL:iterate id="cc" name="viewBean" property="termCodeMap">
42
	    			<bean:define id="key" name="cc" property="key"/>
43
	    			<bean:define id="value" name="cc" property="value"/>
44
	    			<htmlEL:option value="${key}"><c:out value="${value}"/></htmlEL:option>
45
	    		</logicEL:iterate>
46
			</htmlEL:select>
47
		</td>
48
	</tr>
49
	<tr>
50
		<td width="10%">&nbsp;</td>
51
		<td width="45%"><bean:message key="content_ins_amount"/>:</td>
52
		<td><htmlEL:text property="insAmount" name="contentForm" maxlength="16" autocomplete="off"/></td>
53
	</tr>
54
	<tr>
55
		<td width="10%">&nbsp;</td>
56
		<td width="45%"><bean:message key="content_ins_commission"/>:</td>
57
		<td>
58
			<logicEL:iterate id="element" name="viewBean" property="commissionAccMap">
59
				<bean:define id="key" name="element" property="key"/>
60
				<bean:define id="value" name="element" property="value"/>
61
				<htmlEL:radio name="contentForm" property="insCommission" value="${key}"><c:out value="${value}"/></htmlEL:radio>
62
			</logicEL:iterate>
63
		</td>
64
	</tr>
65
	<tr>
66
		<td width="10%">&nbsp;</td>
67
		<td width="45%"><bean:message key="content_ins_commission_amount"/>:</td>
68
		<td><htmlEL:text property="insCommissionAmount" name="contentForm" maxlength="16" autocomplete="off"/></td>
69
	</tr>
70
		<tr>
71
		<td width="10%">&nbsp;</td>
72
		<td width="45%"><bean:message key="content_ins_plan"/>:</td>
73
		<td><htmlEL:text property="insPlan" name="contentForm" autocomplete="off"/></td>
74
	</tr>
75

    
76

    
77
</table>
78
<div class="floatRight">
79
<htmlEL:submit property="action" onclick="overlay();">
80
	<bean:message key="general.button.cancel"/>						
81
</htmlEL:submit>
82
<c:if test="${contentForm.map.hasInsTermCreateAccess eq true}">
83
<htmlEL:submit property="action" onclick="overlay();">
84
	<bean:message key="input_button_create_category_done"/>						
85
</htmlEL:submit>
86
</c:if>
87
</div>
88
</htmlEL:form>