Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssCreateITerm.jsp @ 95:2f9fb3b2341f

History | View | Annotate | Download (2.85 KB)

1 0:ea666cc7880e hadi
<%@ 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-logic-el" prefix="logicEL" %>
4
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
5
<%@page import="java.util.HashMap"%>
6
<h3 class="title"><STRONG><bean:message key="title_sub_create_ins_term"/></STRONG></h3><br/>
7
8
<bean:define id="viewBean" name="contentForm" property="contentsBean"/>
9
10
<htmlEL:form action="/ss105/createiTerm.do">
11
<table class="tabularForm">
12
	<tr><td colspan="3">&nbsp;</td></tr>
13
	<tr>
14
		<td width="10%">&nbsp;</td>
15
		<td width="45%"><bean:message key="content_product_code"/>:</td>
16
		<td><strong><htmlEL:text name="contentForm" property="insProductCode" maxlength="64" autocomplete="off"/></strong></td>
17
	</tr>
18
	<tr>
19
		<td width="10%">&nbsp;</td>
20
		<td width="45%"><bean:message key="content_ins_term"/>: </td>
21
		<td><htmlEL:text property="insTerm" name="contentForm" maxlength="2" autocomplete="off"/></td>
22
	</tr>
23
	<tr>
24
		<td width="10%">&nbsp;</td>
25
		<td width="45%"><bean:message key="content_ins_term_code"/>:</td>
26
		<td>
27
			<htmlEL:select property="insTermCode" name="contentForm">
28
	    		<logicEL:iterate id="cc" name="viewBean" property="termCodeMap">
29
	    			<bean:define id="key" name="cc" property="key"/>
30
	    			<bean:define id="value" name="cc" property="value"/>
31
	    			<htmlEL:option value="${key}"><c:out value="${value}"/></htmlEL:option>
32
	    		</logicEL:iterate>
33
	    	</htmlEL:select>
34
		</td>
35
	</tr>
36
	<tr>
37
		<td width="10%">&nbsp;</td>
38
		<td width="45%"><bean:message key="content_ins_amount"/>:</td>
39
		<td><htmlEL:text property="insAmount" name="contentForm" maxlength="16" autocomplete="off"/></td>
40
	</tr>
41
	<tr>
42
		<td width="10%">&nbsp;</td>
43
		<td width="45%"><bean:message key="content_ins_commission"/> :</td>
44
		<td>
45
			<logicEL:iterate id="element" name="viewBean" property="commissionAccMap">
46
				<bean:define id="key" name="element" property="key"/>
47
				<bean:define id="value" name="element" property="value"/>
48
				<htmlEL:radio name="contentForm" property="insCommission" value="${key}"><c:out value="${value}"/></htmlEL:radio>
49
			</logicEL:iterate>
50
		</td>
51
	</tr>
52
	<tr>
53
		<td width="10%">&nbsp;</td>
54
		<td width="45%"><bean:message key="content_ins_commission_amount"/> :</td>
55
		<td><htmlEL:text property="insCommissionAmount" name="contentForm" maxlength="16" autocomplete="off"/></td>
56
	</tr>
57
	<tr>
58
		<td width="10%">&nbsp;</td>
59
		<td width="45%"><bean:message key="content_ins_plan"/>:</td>
60
		<td><htmlEL:text property="insPlan" name="contentForm" autocomplete="off"/></td>
61
	</tr>
62
</table>
63
64
<c:if test="${contentForm.map.hasInsTermCreateAccess eq true}">
65
	<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
66
		<bean:message key="input_button_create_category_done"/>
67
	</htmlEL:submit>
68
</c:if>
69
70
</htmlEL:form>