Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssTdTermDetails.jsp @ 102:f38fc82aa715

History | View | Annotate | Download (3.09 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/c" prefix="c" %>
4

    
5
<%@page import="java.util.HashMap"%>
6
<h3 class="title"><STRONG><bean:message key="title_sub_td_term"/></STRONG></h3><br/>
7

    
8
<bean:define id="viewBean" name="contentForm" property="contentsBean"/>
9

    
10
<c:forEach items="${viewBean.map.tdTermList}" var="terms">
11
	<htmlEL:form action="/ss105/editTdTerm.do">
12
		<table class="tabularForm">
13
			<tr><td colspan="3">&nbsp;</td></tr>
14
			<tr>
15
				<td width="10%">&nbsp;</td>
16
				<td width="45%"><bean:message key="content_product_code"/>:</td>
17
				<td><strong><c:out value="${terms.map.tdTermProductCode}"/></strong></td>
18
			</tr>
19
			<tr>
20
				<td width="10%">&nbsp;</td>
21
				<td width="45%"><bean:message key="content_td_deposit_term"/>:</td>
22
				<td>
23
					<c:choose>
24
						<c:when test="${not empty terms.map.tdDepositTerm}">
25
							<c:out value="${terms.map.tdDepositTerm}"/>
26
						</c:when>
27
						<c:otherwise>-</c:otherwise>
28
					</c:choose>
29
				</td>
30
			</tr>
31
			<tr>
32
				<td width="10%">&nbsp;</td>
33
				<td width="45%"><bean:message key="content_td_deposit_term_code"/>:</td>
34
				<td>
35
					<c:choose>
36
						<c:when test="${not empty terms.map.tdDepositTermCode}">
37
							<c:out value="${terms.map.tdDepositTermCode}"/>
38
						</c:when>
39
						<c:otherwise>-</c:otherwise>
40
					</c:choose>
41
				</td>
42
			</tr>
43
			<tr>
44
				<td width="10%">&nbsp;</td>
45
				<td width="45%"><bean:message key="content_td_interest_term"/>:</td>
46
				<td>
47
					<c:choose>
48
						<c:when test="${not empty terms.map.tdInterestTerm}">
49
							<c:out value="${terms.map.tdInterestTerm}"/>
50
						</c:when>
51
						<c:otherwise>-</c:otherwise>
52
					</c:choose>
53
				</td>
54
			</tr>
55
			<tr>
56
				<td width="10%">&nbsp;</td>
57
				<td width="45%"><bean:message key="content_td_interest_term_code"/>:</td>
58
				<td>
59
					<c:choose>
60
						<c:when test="${not empty terms.map.tdInterestTermCode}">
61
							<c:out value="${terms.map.tdInterestTermCode}"/>
62
						</c:when>
63
						<c:otherwise>-</c:otherwise>
64
					</c:choose>
65
				</td>
66
			</tr>
67
			<tr>
68
				<td width="10%">&nbsp;</td>
69
				<td width="45%"><bean:message key="content_td_payment_freq"/>:</td>
70
				<td>
71
					<c:choose>
72
						<c:when test="${not empty terms.map.tdPayFreq}">
73
							<c:out value="${terms.map.tdPayFreq}"/>
74
						</c:when>
75
						<c:otherwise>-</c:otherwise>
76
					</c:choose>
77
				</td>
78
			</tr>
79
		</table>
80
		<div class="floatRight">
81
			<c:if test="${contentForm.map.hasTDTermDeleteAccess eq true}">
82
			<htmlEL:hidden property="selectID" value="${terms.map.ID}"/>
83
			<htmlEL:hidden property="name" value="${terms.map.tdTermProductCode}"/>
84
			<htmlEL:submit property="action" onclick="overlay();">
85
				<bean:message key="general.button.delete"/>						
86
			</htmlEL:submit>
87
			</c:if>
88
			<c:if test="${contentForm.map.hasTDTermEditAccess eq true}">
89
			<htmlEL:submit property="action" onclick="overlay();">
90
				<bean:message key="general.button.edit"/>						
91
			</htmlEL:submit>
92
			</c:if>
93
		</div><br/>
94
	</htmlEL:form>
95
</c:forEach>
96
<br/><br/>