Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss112_user / ibssRetailUserCreateConfirm.jsp @ 102:f38fc82aa715

History | View | Annotate | Download (6.65 KB)

1 91:37fde9e2b025 weikuan
<%@ taglib uri="/WEB-INF/tld/struts-html" prefix="html"%>
2
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL"%>
3
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean"%>
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
<h3 class="title"><strong><c:out value="${sessionScope.displayDesc}"/> - <bean:message key="general.button.create" /></strong></h3>
9
10
<table id="errorTable">
11
	<tr>
12
		<td><span id="serverSideError" class="error"><jsp:include
13
			flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span></td>
14
	</tr>
15
</table>
16
17
<table class="stepTable">
18
	<tr>
19
		<td>&nbsp;</td>
20
		<td>
21
		<div id="steps"><span>
22
			<bean:message key="general.title.steps" arg0="2" arg1="3" /></span></div>
23
		</td>
24
	</tr>
25
</table>
26
<htmlEL:form action="/ss112/retailCreateUserResult.do">
27
<table class="tabularForm">
28
	<tr>
29
		<td width="72">&nbsp;</td>
30
    	<td width="140">&nbsp;</td>
31
    	<td width="345">&nbsp;</td>
32
    	<td width="3">&nbsp;</td>
33
   		 <td width="44">&nbsp;</td>
34
	</tr>
35
36
	<tr>
37
		<td width="72">&nbsp;</td>
38
		<td width="140"><bean:message key="user.application"/>:</td>
39
		<td width="345"><c:out value="${ibssUserForm.map.selectedAppName}"/></td>
40
		<td width="3">&nbsp;</td>
41
   		<td width="44">&nbsp;</td>
42
	</tr>
43
44
	<tr>
45
		<td width="72">&nbsp;</td>
46
		<td width="140"><bean:message key="user.id"/>:</td>
47
		<td width="345"><htmlEL:text property="userAlias" name="ibssUserForm" maxlength="64" autocomplete="off"/></td>
48
		<td width="3">&nbsp;</td>
49
   		<td width="44">&nbsp;</td>
50
	</tr>
51
52
	<c:if test="${ibssUserForm.map.selectedAppId eq 1 || ibssUserForm.map.selectedAppId eq 3 || ibssUserForm.map.selectedAppId eq 4}">
53
	<tr>
54
		<td width="72">&nbsp;</td>
55
		<td width="140"><bean:message key="user.new.password"/>:</td>
56
		<td width="345"><htmlEL:password property="pass" name="ibssUserForm" autocomplete="off"/></td>
57
		<td width="3">&nbsp;</td>
58
   		<td width="44">&nbsp;</td>
59
	</tr>
60
61
	<tr>
62
		<td width="72">&nbsp;</td>
63
		<td width="140"><bean:message key="user.confirm.password"/>:</td>
64
		<td width="345"><htmlEL:password property="confirmPass" name="ibssUserForm" autocomplete="off"/></td>
65
		<td width="3">&nbsp;</td>
66
   		<td width="44">&nbsp;</td>
67
	</tr>
68
	</c:if>
69
70
	<c:if test="${ibssUserForm.map.selectedAppId eq 1}">
71
72
	<tr>
73
		<td width="72">&nbsp;</td>
74
		<td width="140"><bean:message key="user.pan.1"/>:</td>
75 102:f38fc82aa715 weikuan
		<td width="345"><htmlEL:text property="m2uPan1" name="ibssUserForm" autocomplete="off" maxlength="16"/></td>
76 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
77
   		<td width="44">&nbsp;</td>
78
	</tr>
79
	<tr>
80
		<td width="72">&nbsp;</td>
81
		<td width="140"><bean:message key="user.pan.2"/>:</td>
82 102:f38fc82aa715 weikuan
		<td width="345"><htmlEL:text property="m2uPan2" name="ibssUserForm" autocomplete="off" maxlength="19"/></td>
83 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
84
   		<td width="44">&nbsp;</td>
85
	</tr>
86
87
	</c:if>
88 101:92abf59c3a68 weikuan
	<%-- <c:if test="${ibssUserForm.map.selectedAppId eq 2}">
89 91:37fde9e2b025 weikuan
90
	<tr>
91
		<td width="72">&nbsp;</td>
92
		<td width="140"><bean:message key="user.id.no"/>:</td>
93
		<td width="345"><htmlEL:text property="onlineStockIdNo" name="ibssUserForm" autocomplete="off"/></td>
94
		<td width="3">&nbsp;</td>
95
   		<td width="44">&nbsp;</td>
96
	</tr>
97
98 101:92abf59c3a68 weikuan
	</c:if> --%>
99 91:37fde9e2b025 weikuan
	<c:if test="${ibssUserForm.map.selectedAppId eq 3}">
100
101
	<tr>
102
		<td width="72">&nbsp;</td>
103
		<td width="140"><bean:message key="user.full.name"/>:</td>
104 102:f38fc82aa715 weikuan
		<td width="345"><htmlEL:text property="ticketingFullName" name="ibssUserForm" autocomplete="off" maxlength="64"/></td>
105 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
106
   		<td width="44">&nbsp;</td>
107
	</tr>
108
	<tr>
109
		<td width="72">&nbsp;</td>
110
		<td width="140"><bean:message key="user.first.name"/>:</td>
111 102:f38fc82aa715 weikuan
		<td><htmlEL:text property="ticketingFirstName" name="ibssUserForm" autocomplete="off" maxlength="64"/></td>
112 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
113
   		<td width="44">&nbsp;</td>
114
	</tr>
115
	<tr>
116
		<td width="72">&nbsp;</td>
117
		<td width="140"><bean:message key="user.last.name"/>:</td>
118 102:f38fc82aa715 weikuan
		<td width="345"><htmlEL:text property="ticketingLastName" name="ibssUserForm" autocomplete="off" maxlength="64"/></td>
119 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
120
   		<td width="44">&nbsp;</td>
121
	</tr>
122
	<tr>
123
		<td width="72">&nbsp;</td>
124
		<td width="140"><bean:message key="user.payee.code"/>:</td>
125 102:f38fc82aa715 weikuan
		<td width="345"><htmlEL:text property="ticketingPayeeCode" name="ibssUserForm" autocomplete="off" maxlength="3"/></td>
126 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
127
   		<td width="44">&nbsp;</td>
128
	</tr>
129
130
	</c:if>
131
	<c:if test="${ibssUserForm.map.selectedAppId eq 4}">
132
133
	<tr>
134
		<td width="72">&nbsp;</td>
135
		<td width="140"><bean:message key="user.pan.cc"/>:</td>
136 102:f38fc82aa715 weikuan
		<td width="345"><htmlEL:text property="ccppPanCC" name="ibssUserForm" autocomplete="off" maxlength="16"/></td>
137 91:37fde9e2b025 weikuan
		<td width="3">&nbsp;</td>
138
   		<td width="44">&nbsp;</td>
139
	</tr>
140
141
	</c:if>
142
	<c:if test="${ibssUserForm.map.selectedAppId eq 5}">
143
144
	<tr>
145
		<td width="72">&nbsp;</td>
146
		<td width="140"><bean:message key="user.ws.flag"/>:</td>
147
		<td width="345">
148
			<htmlEL:select property="im2uWSFlag" name="ibssUserForm">
149
    			<htmlEL:option value="Y"><bean:message key="general.yes"/></htmlEL:option>
150
    			<htmlEL:option value="N"><bean:message key="general.no"/></htmlEL:option>
151
    		</htmlEL:select>
152
    	</td>
153
		<td width="3">&nbsp;</td>
154
   		<td width="44">&nbsp;</td>
155
	</tr>
156
	<tr>
157
		<td width="72">&nbsp;</td>
158
		<td width="140"><bean:message key="user.ws.ident.code"/>:</td>
159
		<td width="345"><htmlEL:text property="im2uWSIdentCode" name="ibssUserForm" autocomplete="off"/></td>
160
		<td width="3">&nbsp;</td>
161
   		<td width="44">&nbsp;</td>
162
	</tr>
163
	<tr>
164
		<td width="72">&nbsp;</td>
165
		<td width="140"><bean:message key="user.ws.my.sg.id"/>:</td>
166
		<td width="345"><htmlEL:text property="im2uWSMySgId" name="ibssUserForm" autocomplete="off"/></td>
167
		<td width="3">&nbsp;</td>
168
   		<td width="44">&nbsp;</td>
169
	</tr>
170
	<tr>
171
		<td width="72">&nbsp;</td>
172
		<td width="140"><bean:message key="user.ws.registration.time.stamp"/>:</td>
173
		<td width="345"><htmlEL:text property="im2uWSRegTimestamp" name="ibssUserForm" autocomplete="off"/> &nbsp; <bean:message key="im2u.reg.timestamp.format"/></td>
174
		<td width="3">&nbsp;</td>
175
   		<td width="44">&nbsp;</td>
176
	</tr>
177
178
	</c:if>
179
180
	<tr>
181
		<td>&nbsp;</td>
182
		<td>&nbsp;</td>
183
		<td>&nbsp;</td>
184
		<td>&nbsp;</td>
185
		<td>&nbsp;</td>
186
	</tr>
187
188
	<tr>
189
		<td colspan="5">&nbsp;</td>
190
	</tr>
191
</table>
192
<div class="floatRight">
193
	<htmlEL:submit property="action" onclick="overlay();">
194
		<bean:message key="general.button.back"/>
195
	</htmlEL:submit>
196
	<htmlEL:submit property="action" onclick="overlay();">
197
		<bean:message key="general.button.confirm"/>
198
	</htmlEL:submit>
199
</div>
200
</htmlEL:form>