Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssSearchPayee.jsp @ 132:58f4c4379845

History | View | Annotate | Download (2.5 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/c" prefix="c" %>
4
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL" %>
5
6
<h3 class="title"><strong><bean:message key="content_payee_search_header"/></strong></h3>
7
<htmlEL:form action="/ss105/searchPayeeResult.do">
8
	<table class="tabularForm">
9
		<tr><td height="30" colspan="4">&nbsp;</td></tr>
10
		<tr>
11
			<td>&nbsp;</td>
12
			<td><bean:message key="content_payee_code"/></td>
13
			<td align="left">:</td>
14
			<td><htmlEL:text name="contentForm" property="searchPayeeCode" autocomplete="off" maxlength="20" size="22"/></td>
15
		</tr>
16
		<tr>
17
			<td>&nbsp;</td>
18
			<td><bean:message key="content_payee_full_name_general"/></td>
19
			<td>:</td>
20
			<td><htmlEL:text name="contentForm" property="searchPayeeFullName" autocomplete="off" maxlength="64" size="22"/>&nbsp;&nbsp;</td>
21
		</tr>
22
		<tr>
23
			<td>&nbsp;</td>
24
			<td><bean:message key="content_payee_short_name_general"/></td>
25
			<td>:</td>
26
			<td><htmlEL:text name="contentForm" property="searchPayeeShortName" autocomplete="off" maxlength="64" size="22"/>&nbsp;&nbsp;
27
			<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
28
			<bean:define id="viewBean" name="contentForm" property="payeeBean" />
29
			<htmlEL:select property="searchLanguage" name="contentForm">
30
	    		<logicEL:iterate id="element" name="viewBean" property="languageMap">
31
	    			<bean:define id="key" name="element" property="key"/>
32
	    			<bean:define id="value" name="element" property="value"/>
33
	    			<htmlEL:option value="${key}"><c:out value="${value}"/></htmlEL:option>
34
	    		</logicEL:iterate>
35
	    	</htmlEL:select>
36
	    	</c:if>
37
	    	</td>
38
		</tr>
39
		<tr>
40
			<td>&nbsp;</td>
41
			<td><bean:message key="content_status"/></td>
42
			<td>:</td>
43
			<td>
44
				<htmlEL:select name="contentForm" property="searchPayeeStatus">
45
				<htmlEL:option value=""><bean:message key="general.select.option0"/></htmlEL:option>
46
				<htmlEL:option value="0"><bean:message key="content_online_selection"/></htmlEL:option>
47
				<htmlEL:option value="1"><bean:message key="content_offline_selection"/></htmlEL:option>
48
				</htmlEL:select>
49
			</td>
50
		</tr>
51
		<tr><td height="30" colspan="4">&nbsp;</td></tr>
52
	</table>
53
	<div class="floatRight">
54
		<htmlEL:submit property="action" styleClass="button" onclick="overlay();">
55
			<bean:message key="general.button.search"/>
56
		</htmlEL:submit>
57
	</div>
58
	<br/>
59
</htmlEL:form>