Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssEditPayee.jsp @ 116:d96c71b8309d

History | View | Annotate | Download (31.8 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
<%@ taglib uri="/WEB-INF/tld/struts-logic" prefix="logic"%>
5
<%@page import="java.util.HashMap"%>
6

    
7
<h3 class="title">
8
	<b><bean:message key="title_sub_edit_payee" />
9
	</b>
10
</h3>
11
<br />
12

    
13
<script type="text/javascript">
14
window.onload = function()
15
{
16
	checkDigitReqChecking();
17
};
18
	
19
	function checkDigitReqChecking()
20
	{
21
			var checkDigitForBillAcctNoReq = document.getElementById("checkDigitForBillAcctNoReq");
22
			var checkDigitForBillRef1Req = document.getElementById("checkDigitForBillRef1Req");
23
			var checkDigitForBillRef2Req = document.getElementById("checkDigitForBillRef2Req");
24
// 			var customRuleReq = document.getElementById("customRuleReq");
25
// 			var programName = document.getElementById("programName");
26
// 			var billRef1SecondParamReq = document.getElementById("billRef1SecondParamReq");
27
// 			var billRef2SecondParamReq = document.getElementById("billRef2SecondParamReq");
28
			var checkDigitButton = document.getElementById("checkDigitButton");
29
			
30
			if (checkDigitForBillAcctNoReq.value == 0 || checkDigitForBillRef1Req.value == 0 || checkDigitForBillRef2Req.value == 0)
31
			{
32
// 				customRuleReq.disabled = true;
33
// 				programName.disabled = true;
34
// 				billRef1SecondParamReq.disabled = false;
35
// 				billRef2SecondParamReq.disabled = false;
36
				checkDigitButton.style.visibility = 'visible';
37
			} 
38
			else
39
			{
40
// 				customRuleReq.disabled = false;
41
// 				billRef1SecondParamReq.disabled = true;
42
// 				billRef2SecondParamReq.disabled = true;
43
// 				checkDigitHyperlink.disabled = false;
44
				checkDigitButton.style.visibility = 'hidden';
45
			}
46
	}
47
			
48
// 	function customRuleReqChecking()
49
// 	{
50
// 		var customRuleReq = document.getElementById("customRuleReq");
51
// 		var programName = document.getElementById("programName");
52
// 		var billRef1SecondParamReq = document.getElementById("billRef1SecondParamReq");
53
// 		var billRef2SecondParamReq = document.getElementById("billRef2SecondParamReq");
54
		
55
// 		if (customRuleReq.value == 1)
56
// 		{
57
// 			programName.disabled = true;
58
// 			billRef1SecondParamReq.disabled = false;
59
// 			billRef2SecondParamReq.disabled = false;
60
// 		}
61
// 		else
62
// 		{
63
// 			programName.disabled = false;
64
// 			billRef1SecondParamReq.disabled = true;
65
// 			billRef2SecondParamReq.disabled = true;
66
// 		}
67
// 	}
68

    
69

    
70
</script>
71

    
72
<table id="errorTable">
73
	<tr>
74
		<td><span id="serverSideError" class="error"><jsp:include
75
					flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span></td>
76
	</tr>
77
</table>
78
<htmlEL:form action="/ss105/updatePayee.do" enctype="multipart/form-data">
79
<table class="stepTable">
80
<tr>
81
<td>&nbsp;</td>
82
<td><div id="steps"><span><bean:message key="general.title.steps" arg0="1" arg1="2"/></span></div></td>
83

    
84
</tr>
85
</table>
86
	<table class="tabularForm">
87
		<tr>
88
			<td colspan="3">&nbsp;</td>
89
		</tr>
90
		<tr>
91
			<td width="10%">&nbsp;</td>
92
			<td width="45%"><bean:message
93
					key="content_account_status_category"></bean:message>:</td>
94
			<td><strong><c:out
95
						value="${contentForm.map.categoryName}" />
96
			</strong>
97
			</td>
98
		</tr>
99
		<tr>
100
			<td width="10%">&nbsp;</td>
101
			<td><bean:message key="content_payee_code"></bean:message>*:</td>
102
			<td><strong><c:out value="${contentForm.map.payeeCode}" />
103
			</strong>
104
			</td>
105
		</tr>
106
		<tr>
107
			<td width="10%">&nbsp;</td>
108
			<td><bean:message key="content_payee_product_code"></bean:message>:</td>
109
			<td><htmlEL:text property="payeeProductCode" name="contentForm"
110
					maxlength="30" autocomplete="off"></htmlEL:text>
111
			</td>
112
		</tr>
113
		<tr>
114
			<td width="10%">&nbsp;</td>
115
			<td><bean:message key="content_payee_full_name"></bean:message>*:</td>
116
			<td><htmlEL:text property="fullName" name="contentForm"
117
					autocomplete="off" maxlength="60" size="40"></htmlEL:text>
118
				<htmlEL:hidden name="contentForm" property="fullNameOri" value="${contentForm.map.fullName}" />
119
			</td>
120
		</tr>
121
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
122
		<tr>
123
			<td width="10%">&nbsp;</td>
124
			<td><bean:message key="content_payee_full_name_ML"></bean:message>:</td>
125
			<td><htmlEL:text property="fullNameML" name="contentForm"
126
					autocomplete="off" maxlength="60"></htmlEL:text>
127
			</td>
128
		</tr>
129
		</c:if>
130
		<tr>
131
			<td width="10%">&nbsp;</td>
132
			<td><bean:message key="content_payee_short_name" />*:</td>
133
			<td><htmlEL:text property="shortName" name="contentForm"
134
					autocomplete="off" maxlength="30" />
135
			</td>
136
		</tr>
137
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
138
		<tr>
139
			<td width="10%">&nbsp;</td>
140
			<td><bean:message key="content_payee_short_name_ML" />:</td>
141
			<td><htmlEL:text property="shortNameML" name="contentForm"
142
					autocomplete="off" maxlength="30" />
143
			</td>
144
		</tr>
145
		</c:if>
146
		<tr>
147
			<td width="10%">&nbsp;</td>
148
			<td class="valignTop"><bean:message
149
					key="content_payee_payee_acc_no" />:</td>
150
			<td><htmlEL:text maxlength="30" property="payeeAccNo"
151
					name="contentForm" />
152
			</td>
153
		</tr>
154
		<tr>
155
			<td width="10%">&nbsp;</td>
156
			<td class="valignTop"><bean:message
157
					key="content_payee_charge_acc_no" />:</td>
158
			<td><htmlEL:text maxlength="30" property="chargeAccNo"
159
					name="contentForm" />
160
			</td>
161
		</tr>
162
		<tr>
163
			<td width="10%">&nbsp;</td>
164
			<td class="valignTop"><bean:message
165
					key="content_payee_charge_amt" />:</td>
166
			<td><htmlEL:text maxlength="11" property="chargeAmt"
167
					name="contentForm" />
168
			</td>
169
		</tr>
170
		<tr>
171
			<td width="10%">&nbsp;</td>
172
			<td><bean:message key="content_status" />:</td>
173
			<td><htmlEL:select property="status" name="contentForm">
174
					<htmlEL:option value="0">
175
						<bean:message key="content_online_selection" />
176
					</htmlEL:option>
177
					<htmlEL:option value="1">
178
						<bean:message key="content_offline_selection" />
179
					</htmlEL:option>
180
				</htmlEL:select></td>
181
		</tr>
182
		<tr>
183
			<td width="10%">&nbsp;</td>
184
			<td><bean:message key="content_payee_online_payment" />:</td>
185
			<td><htmlEL:select property="onlinePayment" name="contentForm">
186
					<htmlEL:option value="0">
187
						<bean:message key="general.no" />
188
					</htmlEL:option>
189
					<htmlEL:option value="1">
190
						<bean:message key="general.yes" />
191
					</htmlEL:option>
192
				</htmlEL:select></td>
193
		</tr>
194
				<tr>
195
			<td width="10%">&nbsp;</td>
196
			<td><bean:message key="content_payee_favour_register_indi" />:</td>
197
			<td><htmlEL:select property="favRegisterIndi" name="contentForm">
198
					<htmlEL:option value="0">
199
						<bean:message key="general.no" />
200
					</htmlEL:option>
201
					<htmlEL:option value="1">
202
						<bean:message key="general.yes" />
203
					</htmlEL:option>
204
				</htmlEL:select></td>
205
		</tr>
206
		<tr>
207
			<td width="10%">&nbsp;</td>
208
			<td><bean:message key="content_payee_effective_date" />:</td>
209
			<td><htmlEL:select property="effectiveDate" name="contentForm">
210
					<htmlEL:option value="0">
211
						<bean:message key="general.no" />
212
					</htmlEL:option>
213
					<htmlEL:option value="1">
214
						<bean:message key="general.yes" />
215
					</htmlEL:option>
216
				</htmlEL:select></td>
217
		</tr>
218
		<tr>
219
			<td width="10%">&nbsp;</td>
220
			<td><bean:message key="content_payee_min_payment" />:</td>
221
			<td><htmlEL:select property="minPayment" name="contentForm">
222
					<htmlEL:option value="0">
223
						<bean:message key="general.no" />
224
					</htmlEL:option>
225
					<htmlEL:option value="1">
226
						<bean:message key="general.yes" />
227
					</htmlEL:option>
228
				</htmlEL:select></td>
229
		</tr>
230
		<tr>
231
			<td width="10%">&nbsp;</td>
232
			<td><bean:message key="content_payee_min_payment_amount" />:</td>
233
			<td><htmlEL:text property="minPaymentAmount" name="contentForm"
234
					maxlength="10" autocomplete="off" />
235
			</td>
236
		</tr>
237
		<tr>
238
			<td width="10%">&nbsp;</td>
239
			<td><bean:message key="content_payee_max_payment" />:</td>
240
			<td><htmlEL:select property="maxPayment" name="contentForm">
241
					<htmlEL:option value="0">
242
						<bean:message key="general.no" />
243
					</htmlEL:option>
244
					<htmlEL:option value="1">
245
						<bean:message key="general.yes" />
246
					</htmlEL:option>
247
				</htmlEL:select></td>
248
		</tr>
249
		<tr>
250
			<td width="10%">&nbsp;</td>
251
			<td><bean:message key="content_payee_max_payment_amount" />:</td>
252
			<td><htmlEL:text property="maxPaymentAmount" name="contentForm"
253
					maxlength="10" autocomplete="off" />
254
			</td>
255
		</tr>
256
		<tr>
257
			<td width="10%">&nbsp;</td>
258
			<td><bean:message key="content_payee_saving_trancode" />*:</td>
259
			<td><htmlEL:text property="savingTrancode" name="contentForm"
260
					maxlength="10" autocomplete="off" />
261
			</td>
262
		</tr>
263
		<tr>
264
			<td width="10%">&nbsp;</td>
265
			<td><bean:message key="content_payee_current_trancode" />*:</td>
266
			<td><htmlEL:text property="currentTrancode" name="contentForm"
267
					maxlength="10" autocomplete="off" />
268
			</td>
269
		</tr>
270
			<tr>
271
			<td width="10%">&nbsp;</td>
272
			<td><bean:message key="content.payee.saving.trancode.bib" />*:</td>
273
			<td><htmlEL:text property="savingTrancodeBIB" name="contentForm"
274
					maxlength="10" autocomplete="off" />
275
			</td>
276
		</tr>
277
		<tr>
278
			<td width="10%">&nbsp;</td>
279
			<td><bean:message key="content.payee.current.trancode.bib" />*:</td>
280
			<td><htmlEL:text property="currentTrancodeBIB" name="contentForm"
281
					maxlength="10" autocomplete="off" />
282
			</td>
283
		</tr>
284
		<tr>
285
			<td width="10%">&nbsp;</td>
286
			<td><bean:message key="content_payee_type" />:</td>
287
		<td>
288
			<htmlEL:select property="payeeType" name="contentForm">
289
				<htmlEL:option value="">
290
 					<bean:message key="general.select.option0" />
291
				</htmlEL:option>
292
				<logic:iterate id="payeeGroup" name="contentForm" property="payeeTypeList">
293
					<htmlEL:option value="${payeeGroup}">
294
	 					<c:out value="${payeeGroup}"></c:out>
295
					</htmlEL:option>
296
				</logic:iterate>
297
			</htmlEL:select>
298
		</td>
299

    
300
		</tr>
301
		<tr>
302
			<td width="10%">&nbsp;</td>
303
			<td class="valignTop"><bean:message
304
					key="content_payee_zakat_charge_amt" />:</td>
305
			<td><htmlEL:text maxlength="11" property="chargeZakatPercent"
306
					name="contentForm" /><strong>%</strong>
307
			</td>
308
		</tr>
309
	
310
		<tr>
311
			<td colspan="3">&nbsp;</td>
312
		</tr>
313
	</table>
314
	
315
		<table class="tabularForm">
316
		<tr>
317
			<td colspan="3">&nbsp;</td>
318
		</tr>	
319
		<tr>
320
			<td width="10%">&nbsp;</td>
321
			<td width="45%"><bean:message key="content_payee_bill_account_req" />:</td>
322
			<td><htmlEL:select property="billAcctReq" name="contentForm">
323
					<htmlEL:option value="0">
324
						<bean:message key="general.no" />
325
					</htmlEL:option>
326
					<htmlEL:option value="1">
327
						<bean:message key="general.yes" />
328
					</htmlEL:option>
329
				</htmlEL:select></td>
330
		</tr>
331
			<tr>
332
		<td width="10%">&nbsp;</td>
333
		<td><bean:message key="content_payee_label_checkDigitForBillAccountNumber"/>:</td>
334
		<td>
335
			<htmlEL:select styleId="checkDigitForBillAcctNoReq" property="checkDigitForBillAcctNoReq" name="contentForm" onchange="checkDigitReqChecking();">
336
				<htmlEL:option value="0"><bean:message key="general.no"/></htmlEL:option>
337
				<htmlEL:option value="1"><bean:message key="general.yes"/></htmlEL:option>
338
			</htmlEL:select>
339
		</td>
340
	<tr>
341
		<tr>
342
			<td width="10%">&nbsp;</td>
343
			<td><bean:message
344
					key="content_payee_bill_account_display_name_req" />:</td>
345
			<td><htmlEL:select property="acctDisplayNameReq"
346
					name="contentForm">
347
					<htmlEL:option value="0">
348
						<bean:message key="general.no" />
349
					</htmlEL:option>
350
					<htmlEL:option value="1">
351
						<bean:message key="general.yes" />
352
					</htmlEL:option>
353
				</htmlEL:select></td>
354
		</tr>
355
		<tr>
356
			<td width="10%">&nbsp;</td>
357
			<td><bean:message key="content_payee_bill_account_display_name" />:</td>
358
			<td><htmlEL:text property="billAcctDispName" name="contentForm"
359
					autocomplete="off" maxlength="64" />
360
			</td>
361
		</tr>
362
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
363
		<tr>
364
			<td width="10%">&nbsp;</td>
365
			<td><bean:message key="content_payee_bill_account_display_name_ML" />:</td>
366
			<td><htmlEL:text property="billAcctDispNameML" name="contentForm"
367
					autocomplete="off" maxlength="64" />
368
			</td>
369
		</tr>
370
		</c:if>
371
		<tr>
372
			<td width="10%">&nbsp;</td>
373
			<td><bean:message key="content_payee_image_req" />:</td>
374
			<td><htmlEL:select property="imageReq" name="contentForm">
375
					<htmlEL:option value="0">
376
						<bean:message key="general.no" />
377
					</htmlEL:option>
378
					<htmlEL:option value="1">
379
						<bean:message key="general.yes" />
380
					</htmlEL:option>
381
				</htmlEL:select></td>
382
		</tr>
383
		<tr>
384
			<td width="10%">&nbsp;</td>
385
			<td><bean:message key="content_payee_image_url"></bean:message>:</td>
386
			<!--<td><htmlEL:text property="imageUrl" name="contentForm"
387
					maxlength="256" autocomplete="off" />
388
			</td>-->
389
			<td><htmlEL:file property="imagePayee" name="contentForm"/></td>
390
		</tr>
391
		<tr>
392
			<td width="10%">&nbsp;</td>
393
			<td><bean:message key="content_payee_validation_rule" />:</td>
394
			<td><htmlEL:text property="billAccDispNamePattern" name="contentForm" maxlength="100" size="40" autocomplete="off" /></td>
395
		</tr>
396
		<tr>
397
			<td colspan="3">&nbsp;</td>
398
		</tr>
399
	</table>
400

    
401
	<table class="tabularForm">
402
		<tr>
403
			<td colspan="3">&nbsp;</td>
404
		</tr>	
405
				<tr>
406
			<td width="10%">&nbsp;</td>
407
			<td width="45%"><bean:message key="content_payee_ref_no_req" />:</td>
408
			<td><htmlEL:select property="refNoReq" name="contentForm">
409
					<htmlEL:option value="0">
410
						<bean:message key="general.no" />
411
					</htmlEL:option>
412
					<htmlEL:option value="1">
413
						<bean:message key="general.yes" />
414
					</htmlEL:option>
415
				</htmlEL:select></td>
416
		</tr>
417
		</tr>	
418
				<tr>
419
			<td width="10%">&nbsp;</td>
420
			<td><bean:message key="content_payee_ref_no_Mandatory" />:</td>
421
			<td><htmlEL:select property="refNoMandatory" name="contentForm">
422
					<htmlEL:option value="0">
423
						<bean:message key="general.no" />
424
					</htmlEL:option>
425
					<htmlEL:option value="1">
426
						<bean:message key="general.yes" />
427
					</htmlEL:option>
428
				</htmlEL:select></td>
429
		</tr>
430
		<tr>
431
			<td width="10%">&nbsp;</td>
432
			<td><bean:message key="content_payee_ref_no_name_req" />:</td>
433
			<td><htmlEL:select property="refNoNameReq" name="contentForm">
434
					<htmlEL:option value="0">
435
						<bean:message key="general.no" />
436
					</htmlEL:option>
437
					<htmlEL:option value="1">
438
						<bean:message key="general.yes" />
439
					</htmlEL:option>
440
				</htmlEL:select></td>
441
		</tr>
442
		<tr>
443
			<td width="10%">&nbsp;</td>
444
			<td><bean:message key="content_payee_ref_no_name_display" />:</td>
445
			<td><htmlEL:text property="refNoNameDisplay" name="contentForm"
446
					maxlength="60" autocomplete="off" />
447
			</td>
448
		</tr>
449
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
450
		<tr>
451
			<td width="10%">&nbsp;</td>
452
			<td><bean:message key="content_payee_ref_no_name_display_ML" />:</td>
453
			<td><htmlEL:text property="refNoNameDisplayML" name="contentForm"
454
					maxlength="60" autocomplete="off" />
455
			</td>
456
		</tr>
457
		</c:if>
458
		<tr>
459
			<td width="10%">&nbsp;</td>
460
			<td><bean:message key="content_payee_payment_type" />:</td>
461
			<td><htmlEL:text property="paymentType" name="contentForm"
462
					maxlength="2" autocomplete="off" />
463
			</td>
464
		</tr>
465
		<tr>
466
			<td width="10%">&nbsp;</td>
467
			<td><bean:message key="content_payee_validation_rule" />:</td>
468
			<td><htmlEL:text property="refNoNamePattern" name="contentForm" maxlength="100" size="40" autocomplete="off" /></td>
469
		</tr>
470
		<tr>
471
			<td colspan="3">&nbsp;</td>
472
		</tr>
473
	</table>
474
	
475
	<table class="tabularForm">
476
		<tr>
477
			<td colspan="3">&nbsp;</td>
478
		</tr>
479
		<tr>
480
			<td width="10%">&nbsp;</td>
481
			<td width="45%"><bean:message
482
					key="content_payee_bill_ref_1_req" />:</td>
483
			<td><htmlEL:select property="billRef1Req" name="contentForm">
484
					<htmlEL:option value="0">
485
						<bean:message key="general.no" />
486
					</htmlEL:option>
487
					<htmlEL:option value="1">
488
						<bean:message key="general.yes" />
489
					</htmlEL:option>
490
				</htmlEL:select></td>
491
		</tr>
492
		<td width="10%">&nbsp;</td>
493
		<td><bean:message key="content_payee_label_checkDigitForBillReferenceNo1"/>:</td>
494
		<td>
495
			<htmlEL:select styleId="checkDigitForBillRef1Req" property="checkDigitForBillRef1Req" name="contentForm" onchange="checkDigitReqChecking();">
496
				<htmlEL:option value="0"><bean:message key="general.no"/></htmlEL:option>
497
				<htmlEL:option value="1"><bean:message key="general.yes"/></htmlEL:option>
498
			</htmlEL:select>
499
		</td>
500
	<tr>
501
		<tr>
502
			<td width="10%">&nbsp;</td>
503
			<td class="valignTop"><bean:message
504
					key="content_payee_bill_ref_1_disp_name_req" />:</td>
505
			<td><htmlEL:select property="billRef1DispNameReq"
506
					name="contentForm">
507
					<htmlEL:option value="0">
508
						<bean:message key="general.no" />
509
					</htmlEL:option>
510
					<htmlEL:option value="1">
511
						<bean:message key="general.yes" />
512
					</htmlEL:option>
513
				</htmlEL:select></td>
514
		</tr>
515
		<tr>
516
			<td width="10%">&nbsp;</td>
517
			<td class="valignTop"><bean:message
518
					key="content_payee_bill_ref_1_disp_name" />:</td>
519
			<td><htmlEL:text maxlength="50" property="billRef1DispName"
520
					name="contentForm" />
521
			</td>
522
		</tr>
523
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
524
		<tr>
525
			<td width="10%">&nbsp;</td>
526
			<td class="valignTop"><bean:message key="content_payee_bill_ref_1_disp_name_ML" />:</td>
527
			<td><htmlEL:text maxlength="50" property="billRef1DispNameML" name="contentForm" />
528
			</td>
529
		</tr>
530
		</c:if>
531
		<!-- <tr>
532
		<td width="10%">&nbsp;</td>
533
		<td class="valignTop"><bean:message key="content_payee_bill_ref_1_type"/>:</td>
534
		<td>
535
			<htmlEL:select property="billRef1Type" name="contentForm">
536
				<htmlEL:option value="0">Free Input</htmlEL:option>
537
				<htmlEL:option value="1">Drop Down</htmlEL:option>
538
			</htmlEL:select>
539
		</td>
540
	</tr>  -->
541
		<tr>
542
			<td width="10%">&nbsp;</td>
543
			<td class="valignTop"><bean:message
544
					key="content_payee_bill_ref_1_mandatory" />:</td>
545
			<td><htmlEL:select property="billRef1Mandatory"
546
					name="contentForm">
547
					<htmlEL:option value="0">
548
						<bean:message key="general.no" />
549
					</htmlEL:option>
550
					<htmlEL:option value="1">
551
						<bean:message key="general.yes" />
552
					</htmlEL:option>
553
				</htmlEL:select></td>
554
		</tr>
555
		<tr>
556
			<td width="10%">&nbsp;</td>
557
			<td class="valignTop"><bean:message
558
					key="content_payee_bill_ref_1_host_field" />:</td>
559
			<td><htmlEL:select property="billRef1HostField"
560
					name="contentForm">
561
					<htmlEL:option value="">
562
						<bean:message key="general.select.option0" />
563
					</htmlEL:option>
564
					<logic:iterate id="hostField" name="contentForm"
565
						property="billHostFieldList">
566
						<htmlEL:option value="${hostField}">
567
							<c:out value="${hostField}"></c:out>
568
						</htmlEL:option>
569
					</logic:iterate>
570
				</htmlEL:select></td>
571
		</tr>
572
		<tr>
573
			<td width="10%">&nbsp;</td>
574
			<td class="valignTop"><bean:message
575
					key="content_payee_image_ref_1_req" />:</td>
576
			<td><htmlEL:select property="imageRef1Req" name="contentForm">
577
					<htmlEL:option value="0">
578
						<bean:message key="general.no" />
579
					</htmlEL:option>
580
					<htmlEL:option value="1">
581
						<bean:message key="general.yes" />
582
					</htmlEL:option>
583
				</htmlEL:select></td>
584
		</tr>
585
		<tr>
586
			<td width="10%">&nbsp;</td>
587
			<td class="valignTop"><bean:message
588
					key="content_payee_image_ref_1_url" />:</td>
589
			<td><htmlEL:text maxlength="128" property="imageRef1Url"
590
					name="contentForm" />
591
			</td>
592
		</tr>
593
		<tr>
594
			<td width="10%">&nbsp;</td>
595
			<td><bean:message key="content_payee_validation_rule" />:</td>
596
			<td><htmlEL:text property="billRef1DispNamePattern" name="contentForm" maxlength="100" size="40" autocomplete="off" /></td>
597
		</tr>
598
		<tr>
599
			<td colspan="3">&nbsp;</td>
600
		</tr>
601
		</table>
602
	
603
<!-- 	<table class="tabularForm"> -->
604
<!-- 		<tr> -->
605
<!-- 			<td colspan="3">&nbsp;</td> -->
606
<!-- 		</tr>	 -->
607
<!-- 	<tr> -->
608
<!-- 			<td colspan="3">&nbsp;</td> -->
609
<!-- 		</tr> -->
610
<!-- 	</table> -->
611
	<table class="tabularForm">
612
		<tr>
613
			<td colspan="3">&nbsp;</td>
614
		</tr>	
615
		
616
		<tr>
617
			<td width="10%">&nbsp;</td>
618
			<td class="valignTop"><bean:message
619
					key="content_payee_bill_ref_2_req" />:</td>
620
			<td><htmlEL:select property="billRef2Req" name="contentForm">
621
					<htmlEL:option value="0">
622
						<bean:message key="general.no" />
623
					</htmlEL:option>
624
					<htmlEL:option value="1">
625
						<bean:message key="general.yes" />
626
					</htmlEL:option>
627
				</htmlEL:select></td>
628
		</tr>
629
		<tr>
630
			<td width="10%">&nbsp;</td>
631
			<td><bean:message key="content_payee_label_checkDigitForBillReferenceNo2"/>:</td>
632
			<td>
633
				<htmlEL:select styleId="checkDigitForBillRef2Req" property="checkDigitForBillRef2Req" name="contentForm" onchange="checkDigitReqChecking();">
634
					<htmlEL:option value="0"><bean:message key="general.no"/></htmlEL:option>
635
					<htmlEL:option value="1"><bean:message key="general.yes"/></htmlEL:option>
636
				</htmlEL:select>
637
			</td>
638
		</tr>
639
		<tr>
640
			<td width="10%">&nbsp;</td>
641
			<td class="valignTop"><bean:message
642
					key="content_payee_bill_ref_2_disp_name_req" />:</td>
643
			<td><htmlEL:select property="billRef2DispNameReq"
644
					name="contentForm">
645
					<htmlEL:option value="0">
646
						<bean:message key="general.no" />
647
					</htmlEL:option>
648
					<htmlEL:option value="1">
649
						<bean:message key="general.yes" />
650
					</htmlEL:option>
651
				</htmlEL:select></td>
652
		</tr>
653
		<tr>
654
			<td width="10%">&nbsp;</td>
655
			<td class="valignTop"><bean:message
656
					key="content_payee_bill_ref_2_disp_name" />:</td>
657
			<td><htmlEL:text maxlength="50" property="billRef2DispName"
658
					name="contentForm" />
659
			</td>
660
		</tr>
661
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
662
		<tr>
663
			<td width="10%">&nbsp;</td>
664
			<td class="valignTop"><bean:message
665
					key="content_payee_bill_ref_2_disp_name_ML" />:</td>
666
			<td><htmlEL:text maxlength="50" property="billRef2DispNameML"
667
					name="contentForm" />
668
			</td>
669
		</tr>
670
		</c:if>
671
		<!-- <tr>
672
		<td width="10%">&nbsp;</td>
673
		<td class="valignTop"><bean:message key="content_payee_bill_ref_2_type"/>:</td>
674
		<td>
675
			<htmlEL:select property="billRef2Type" name="contentForm">
676
				<htmlEL:option value="0">Free Input</htmlEL:option>
677
				<htmlEL:option value="1">Drop Down</htmlEL:option>
678
			</htmlEL:select>
679
		</td>
680
	</tr>  -->
681
		<tr>
682
			<td width="10%">&nbsp;</td>
683
			<td class="valignTop"><bean:message
684
					key="content_payee_bill_ref_2_mandatory" />:</td>
685
			<td><htmlEL:select property="billRef2Mandatory"
686
					name="contentForm">
687
					<htmlEL:option value="0">
688
						<bean:message key="general.no" />
689
					</htmlEL:option>
690
					<htmlEL:option value="1">
691
						<bean:message key="general.yes" />
692
					</htmlEL:option>
693
				</htmlEL:select></td>
694
		</tr>
695
		<tr>
696
			<td width="10%">&nbsp;</td>
697
			<td class="valignTop"><bean:message
698
					key="content_payee_bill_ref_2_host_field" />:</td>
699
			<td><htmlEL:select property="billRef2HostField"
700
					name="contentForm">
701
					<htmlEL:option value="">
702
						<bean:message key="general.select.option0" />
703
					</htmlEL:option>
704
					<logic:iterate id="hostField" name="contentForm"
705
						property="billHostFieldList">
706
						<htmlEL:option value="${hostField}">
707
							<c:out value="${hostField}"></c:out>
708
						</htmlEL:option>
709
					</logic:iterate>
710
				</htmlEL:select></td>
711
		</tr>
712
		<tr>
713
			<td width="10%">&nbsp;</td>
714
			<td class="valignTop"><bean:message
715
					key="content_payee_image_ref_2_req" />:</td>
716
			<td><htmlEL:select property="imageRef2Req" name="contentForm">
717
					<htmlEL:option value="0">
718
						<bean:message key="general.no" />
719
					</htmlEL:option>
720
					<htmlEL:option value="1">
721
						<bean:message key="general.yes" />
722
					</htmlEL:option>
723
				</htmlEL:select></td>
724
		</tr>
725
		<tr>
726
			<td width="10%">&nbsp;</td>
727
			<td class="valignTop"><bean:message
728
					key="content_payee_image_ref_2_url" />:</td>
729
			<td><htmlEL:text maxlength="128" property="imageRef2Url"
730
					name="contentForm" />
731
			</td>
732
		</tr>
733
		<tr>
734
			<td width="10%">&nbsp;</td>
735
			<td><bean:message key="content_payee_validation_rule" />:</td>
736
			<td><htmlEL:text property="billRef2DispNamePattern" name="contentForm" maxlength="100" size="40" autocomplete="off" /></td>
737
		</tr>
738
		<tr>
739
			<td colspan="3">&nbsp;</td>
740
		</tr>
741
	</table>
742
	
743
	<table class="tabularForm">
744
		<tr>
745
			<td colspan="3">&nbsp;</td>
746
		</tr>
747
		<tr>
748
			<td width="10%">&nbsp;</td>
749
			<td class="valignTop"><bean:message key="content_payee_merchant" />:</td>
750
			<td><htmlEL:select property="merchant" name="contentForm">
751
					<htmlEL:option value="0">
752
						<bean:message key="general.no" />
753
					</htmlEL:option>
754
					<htmlEL:option value="1">
755
						<bean:message key="general.yes" />
756
					</htmlEL:option>
757
				</htmlEL:select></td>
758
		</tr>
759
		<tr>
760
			<td width="10%">&nbsp;</td>
761
			<td width="45%" class="valignTop"><bean:message
762
					key="content_payee_merchant_auth_code" />:</td>
763
			<td><htmlEL:text maxlength="50" property="mercAuthCode"
764
					name="contentForm" />
765
			</td>
766
		</tr>
767
		<tr>
768
			<td width="10%">&nbsp;</td>
769
			<td class="valignTop"><bean:message
770
					key="content_payee_merchant_auth_sub_code" />:</td>
771
			<td><htmlEL:text maxlength="50" property="mercAuthSubCode"
772
					name="contentForm" />
773
			</td>
774
		</tr>
775
		<tr>
776
			<td width="10%">&nbsp;</td>
777
			<td class="valignTop"><bean:message
778
					key="content_payee_recharge_code_indi" />:</td>
779
			<td><htmlEL:select property="rechargecodeIndic"
780
					name="contentForm">
781
					<htmlEL:option value="0">
782
						<bean:message key="general.no" />
783
					</htmlEL:option>
784
					<htmlEL:option value="1">
785
						<bean:message key="general.yes" />
786
					</htmlEL:option>
787
				</htmlEL:select></td>
788
		</tr>
789
		<tr>
790
			<td width="10%">&nbsp;</td>
791
			<td class="valignTop"><bean:message
792
					key="content_payee_recharge_code_name" />:</td>
793
			<td><htmlEL:text maxlength="50" property="rechargeCodename"
794
					name="contentForm" />
795
			</td>
796
		</tr>
797
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
798
		<tr>
799
			<td width="10%">&nbsp;</td>
800
			<td class="valignTop"><bean:message
801
					key="content_payee_recharge_code_name_ML" />:</td>
802
			<td><htmlEL:text maxlength="50" property="rechargeCodenameML"
803
					name="contentForm" />
804
			</td>
805
		</tr>
806
		</c:if>
807
		<tr>
808
			<td width="10%">&nbsp;</td>
809
			<td class="valignTop"><bean:message
810
					key="content_payee_serial_no_indi" />:</td>
811
			<td><htmlEL:select property="serialNoIndicator"
812
					name="contentForm">
813
					<htmlEL:option value="0">
814
						<bean:message key="general.no" />
815
					</htmlEL:option>
816
					<htmlEL:option value="1">
817
						<bean:message key="general.yes" />
818
					</htmlEL:option>
819
				</htmlEL:select></td>
820
		</tr>
821
		<tr>
822
			<td width="10%">&nbsp;</td>
823
			<td class="valignTop"><bean:message
824
					key="content_payee_serial_no_name" />:</td>
825
			<td><htmlEL:textarea property="serialNoName" name="contentForm" />
826
			</td>
827
		</tr>
828
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
829
		<tr>
830
			<td width="10%">&nbsp;</td>
831
			<td class="valignTop"><bean:message
832
					key="content_payee_serial_no_name_ML" />:</td>
833
			<td><htmlEL:textarea property="serialNoNameML" name="contentForm" />
834
			</td>
835
		</tr>
836
		</c:if>
837
		<tr>
838
			<td width="10%">&nbsp;</td>
839
			<td class="valignTop"><bean:message
840
					key="content_payee_bill_payment_allow" />:</td>
841
			<td><htmlEL:select property="billPaymentAllowed"
842
					name="contentForm">
843
					<htmlEL:option value="0">
844
						<bean:message key="general.no" />
845
					</htmlEL:option>
846
					<htmlEL:option value="1">
847
						<bean:message key="general.yes" />
848
					</htmlEL:option>
849
				</htmlEL:select></td>
850
		</tr>
851
		<tr>
852
			<td width="10%">&nbsp;</td>
853
			<td class="valignTop"><bean:message
854
					key="content_payee_debit_engine_allow" />:</td>
855
			<td><htmlEL:select property="debitEngineAllowed"
856
					name="contentForm">
857
					<htmlEL:option value="0">
858
						<bean:message key="general.no" />
859
					</htmlEL:option>
860
					<htmlEL:option value="1">
861
						<bean:message key="general.yes" />
862
					</htmlEL:option>
863
				</htmlEL:select></td>
864
		</tr>
865
		<tr>
866
			<td width="10%">&nbsp;</td>
867
			<td class="valignTop"><bean:message
868
					key="content_payee_program_linked" />:</td>
869
			<td><htmlEL:text maxlength="40" property="programLinked"
870
					name="contentForm" />
871
			</td>
872
		</tr>
873
		<tr>
874
			<td width="10%">&nbsp;</td>
875
			<td class="valignTop"><bean:message
876
					key="content_payee_payment_desc" />:</td>
877
			<td><htmlEL:text maxlength="2" property="paymentDesc"
878
					name="contentForm" />
879
			</td>
880
		</tr>
881
		<tr>
882
			<td width="10%">&nbsp;</td>
883
			<td class="valignTop"><bean:message
884
					key="content_payee_amount_type" />:</td>
885
			<td><htmlEL:select property="amountType" name="contentForm">
886
					<htmlEL:option value="0">Free Input</htmlEL:option>
887
					<htmlEL:option value="1">Drop Down</htmlEL:option>
888
					<htmlEL:option value="2">Fix Amount</htmlEL:option>
889
				</htmlEL:select></td>
890
		</tr>
891
		<tr>
892
			<td width="10%">&nbsp;</td>
893
			<td class="valignTop"><bean:message
894
					key="content_payee_fix_amount" />:</td>
895
			<td><htmlEL:text maxlength="11" property="fixAmount"
896
					name="contentForm" />
897
			</td>
898
		</tr>
899
		<tr>
900
			<td colspan="3">&nbsp;</td>
901
		</tr>
902
	</table>
903
	
904
		<table class="tabularForm">
905
		<tr>
906
			<td colspan="3">&nbsp;</td>
907
		</tr>	
908
		<tr>
909
			<td width="10%">&nbsp;</td>
910
			<td class="valignTop"><bean:message
911
					key="content_payee_note1_req" />:</td>
912
			<td><htmlEL:textarea property="note1" name="contentForm" />
913
			</td>
914
		</tr>
915
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">	
916
		<tr>
917
			<td width="10%">&nbsp;</td>
918
			<td class="valignTop"><bean:message
919
					key="content_payee_note1_req_ML" />:</td>
920
			<td><htmlEL:textarea property="note1ML" name="contentForm" />
921
			</td>
922
		</tr>
923
		</c:if>
924
		<tr>
925
			<td width="10%">&nbsp;</td>
926
			<td class="valignTop"><bean:message
927
					key="content_payee_note2_req" />:</td>
928
			<td><htmlEL:textarea property="note2" name="contentForm" />
929
			</td>
930
		</tr>
931
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">	
932
		<tr>
933
			<td width="10%">&nbsp;</td>
934
			<td class="valignTop"><bean:message
935
					key="content_payee_note2_req_ML" />:</td>
936
			<td><htmlEL:textarea property="note2ML" name="contentForm" />
937
			</td>
938
		</tr>
939
		</c:if>
940
		<tr>
941
			<td width="10%">&nbsp;</td>
942
			<td class="valignTop"><bean:message
943
					key="content_payee_note3_req" />:</td>
944
			<td><htmlEL:textarea property="note3" name="contentForm" />
945
			</td>
946
		</tr>
947
		<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">	
948
		<tr>
949
			<td width="10%">&nbsp;</td>
950
			<td class="valignTop"><bean:message
951
					key="content_payee_note3_req_ML" />:</td>
952
			<td><htmlEL:textarea property="note3ML" name="contentForm" />
953
			</td>
954
		</tr>
955
		</c:if>
956
	<tr>
957
			<td colspan="3">&nbsp;</td>
958
		</tr>
959
	</table>
960
	<div class="floatRight" style="direction: rtl;text-align: right;">
961
		<htmlEL:submit property="action">
962
			<bean:message key="general.button.update" />
963
		</htmlEL:submit>
964
		<htmlEL:cancel property="action">
965
			<bean:message key="general.button.back" />
966
		</htmlEL:cancel>
967
	</div>
968
</htmlEL:form>
969
<%-- <htmlEL:form action="/ss105/checkDigitPrerequisiteDetails.do"> --%>
970
<%-- 	<htmlEL:hidden property="payeeCode" name="contentForm" value ="${payeeBean.map.payeeCode}"></htmlEL:hidden> --%>
971
<%-- <htmlEL:hidden property="createPayeeInd" name="contentForm" value ="edit"></htmlEL:hidden> --%>
972
<%-- 	<htmlEL:hidden name="contentForm" property="fullNameOri" value="${contentForm.map.fullName}" /> --%>
973
<%-- 	<htmlEL:submit styleId="checkDigitButton" property="action" styleClass="button floatRight" onclick="overlay();"> --%>
974
<%-- 		<bean:message key="content_payee_button_checkDigit"/>						 --%>
975
<%-- 	</htmlEL:submit> --%>
976
<%-- </htmlEL:form> --%>