Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssPayeeDetails.jsp @ 155:4c6a38c6bf10

History | View | Annotate | Download (34.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/struts-bean-el" prefix="beanEL" %>
4
<%@ taglib uri="/WEB-INF/tld/struts-logic" prefix="logic" %>
5
<%@ taglib uri="/WEB-INF/tld/struts-html" prefix="html"%>
6
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL" %>
7
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
8
<%@page import="java.util.HashMap"%>
9
10
<h3 class="title"><strong><bean:write name="contentForm" property="contentTypeCode"/></strong></h3><br/>
11
12
<h5><bean:write name="contentForm" property="categoryName"/></h5><br/>
13
14
<table id="errorTable">
15
<tr>
16
	<td>
17
		<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
18
	</td>
19
</tr>
20
</table>
21
22
<bean:define id="payeeBean" name="contentForm" property="payeeBean" />
23
<table class="tabularForm">
24
	<tr><td colspan="3">&nbsp;</td></tr>
25
	<tr>
26
		<td width="10%">&nbsp;</td>
27
		<td width="50%"><bean:message key="content_payee_code"/>:</td>
28
		<td><strong>
29
			<c:choose>
30
				<c:when test="${not empty payeeBean.map.payeeCode}">
31
					<c:out value="${payeeBean.map.payeeCode}"/>
32
				</c:when>
33
				<c:otherwise>-</c:otherwise>
34
			</c:choose>
35
		</strong></td>
36
	</tr>
37
	<tr>
38
		<td width="10%">&nbsp;</td>
39
		<td width="50%"><bean:message key="content_payee_product_code"/>:</td>
40
		<td><strong>
41
			<c:choose>
42
				<c:when test="${not empty payeeBean.map.payeeProductCode}">
43
					<c:out value="${payeeBean.map.payeeProductCode}"/>
44
				</c:when>
45
				<c:otherwise>-</c:otherwise>
46
			</c:choose>
47
		</strong></td>
48
	</tr>
49
	<tr>
50
		<td width="10%">&nbsp;</td>
51
		<td width="50%"><bean:message key="content_payee_full_name"/>:</td>
52
		<td><strong>
53
			<c:choose>
54
				<c:when test="${not empty payeeBean.map.fullName}">
55
					<c:out value="${payeeBean.map.fullName}"/>
56
				</c:when>
57
				<c:otherwise>-</c:otherwise>
58
			</c:choose>
59
		</strong></td>
60
	</tr>
61
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
62
	<tr>
63
		<td width="10%">&nbsp;</td>
64
		<td width="50%"><bean:message key="content_payee_full_name_ML"/>:</td>
65
		<td><strong>
66
			<c:choose>
67
				<c:when test="${not empty payeeBean.map.fullNameML}">
68
					<c:out value="${payeeBean.map.fullNameML}"/>
69
				</c:when>
70
				<c:otherwise>-</c:otherwise>
71
			</c:choose>
72
		</strong></td>
73
	</tr>
74
	</c:if>
75
	<tr>
76
		<td width="10%">&nbsp;</td>
77
		<td width="50%"><bean:message key="content_payee_short_name"/>:</td>
78
		<td><strong>
79
			<c:choose>
80
				<c:when test="${not empty payeeBean.map.shortName}">
81
					<c:out value="${payeeBean.map.shortName}"/>
82
				</c:when>
83
				<c:otherwise>-</c:otherwise>
84
			</c:choose>
85
		</strong></td>
86
	</tr>
87
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
88
	<tr>
89
		<td width="10%">&nbsp;</td>
90
		<td width="50%"><bean:message key="content_payee_short_name_ML"/>:</td>
91
		<td><strong>
92
			<c:choose>
93
				<c:when test="${not empty payeeBean.map.shortNameML}">
94
					<c:out value="${payeeBean.map.shortNameML}"/>
95
				</c:when>
96
				<c:otherwise>-</c:otherwise>
97
			</c:choose>
98
		</strong></td>
99
	</tr>
100
	</c:if>
101
	<tr>
102
		<td width="10%">&nbsp;</td>
103
		<td width="50%"><bean:message key="content_payee_payee_acc_no"/>:</td>
104
		<td><strong>
105
			<c:choose>
106
				<c:when test="${not empty payeeBean.map.payeeAccNo}">
107
					<c:out value="${payeeBean.map.payeeAccNo}"/>
108
				</c:when>
109
				<c:otherwise>-</c:otherwise>
110
			</c:choose>
111
		</strong></td>
112
	</tr>
113
	<tr>
114
		<td width="10%">&nbsp;</td>
115
		<td width="50%"><bean:message key="content_payee_charge_acc_no"/>:</td>
116
		<td><strong>
117
			<c:choose>
118
				<c:when test="${not empty payeeBean.map.chargeAccNo}">
119
					<c:out value="${payeeBean.map.chargeAccNo}"/>
120
				</c:when>
121
				<c:otherwise>-</c:otherwise>
122
			</c:choose>
123
		</strong></td>
124
	</tr>
125
	<tr>
126
		<td width="10%">&nbsp;</td>
127
		<td width="50%"><bean:message key="content_payee_charge_amt"/>:</td>
128
		<td><strong>
129
			<c:choose>
130
				<c:when test="${not empty payeeBean.map.chargeAmt}">
131
					<c:out value="${payeeBean.map.chargeAmt}"/>
132
				</c:when>
133
				<c:otherwise>-</c:otherwise>
134
			</c:choose>
135
		</strong></td>
136
	</tr>
137
	<tr>
138
		<td width="10%">&nbsp;</td>
139
		<td width="50%"><bean:message key="content_status"/>:</td>
140
		<td><strong>
141
			<c:choose>
142
				<c:when test="${payeeBean.map.status eq 0}">
143
					<bean:message key="content_online_selection"/>
144
				</c:when>
145
				<c:otherwise>
146
					<bean:message key="content_offline_selection"/>
147
				</c:otherwise>
148
			</c:choose>
149
		</strong></td>
150
	</tr>
151
	<tr>
152
		<td width="10%">&nbsp;</td>
153
		<td width="50%"><bean:message key="content_payee_online_payment"/>:</td>
154
		<td><strong>
155
			<c:choose>
156
				<c:when test="${payeeBean.map.onlinePayment eq 1}">
157
					<bean:message key="general.yes"/>
158
				</c:when>
159
				<c:otherwise>
160
					<bean:message key="general.no"/>
161
				</c:otherwise>
162
			</c:choose>
163
		</strong></td>
164
	</tr>
165
	<tr>
166
		<td width="10%">&nbsp;</td>
167
		<td width="50%"><bean:message key="content_payee_favour_register_indi"/>:</td>
168
		<td><strong>
169
			<c:choose>
170
				<c:when test="${payeeBean.map.favRegisterIndi eq 1}">
171
					<bean:message key="general.yes"/>
172
				</c:when>
173
				<c:otherwise>
174
					<bean:message key="general.no"/>
175
				</c:otherwise>
176
			</c:choose>
177
		</strong></td>
178
	</tr>
179
	<tr>
180
		<td width="10%">&nbsp;</td>
181
		<td width="50%"><bean:message key="content_payee_effective_date"/>:</td>
182
		<td><strong>
183
			<c:choose>
184
				<c:when test="${payeeBean.map.effectiveDate eq 1}">
185
					<bean:message key="general.yes"/>
186
				</c:when>
187
				<c:otherwise>
188
					<bean:message key="general.no"/>
189
				</c:otherwise>
190
			</c:choose>
191
		</strong></td>
192
	</tr>
193
	<tr>
194
		<td width="10%">&nbsp;</td>
195
		<td width="50%"><bean:message key="content_payee_min_payment"/>:</td>
196
		<td><strong>
197
			<c:choose>
198
				<c:when test="${payeeBean.map.minPayment eq 1}">
199
					<bean:message key="general.yes"/>
200
				</c:when>
201
				<c:otherwise>
202
					<bean:message key="general.no"/>
203
				</c:otherwise>
204
			</c:choose>
205
		</strong></td>
206
	</tr>
207
	<tr>
208
		<td width="10%">&nbsp;</td>
209
		<td width="50%"><bean:message key="content_payee_min_payment_amount"/>:</td>
210
		<td><strong>
211
			<c:choose>
212
				<c:when test="${not empty payeeBean.map.minPaymentAmount}">
213
					<c:out value="${payeeBean.map.minPaymentAmount}"/>
214
				</c:when>
215
				<c:otherwise>-</c:otherwise>
216
			</c:choose>
217
		</strong></td>
218
	</tr>
219
	<tr>
220
		<td width="10%">&nbsp;</td>
221
		<td width="50%"><bean:message key="content_payee_max_payment"/>:</td>
222
		<td><strong>
223
			<c:choose>
224
				<c:when test="${payeeBean.map.maxPayment eq 1}">
225
					<bean:message key="general.yes"/>
226
				</c:when>
227
				<c:otherwise>
228
					<bean:message key="general.no"/>
229
				</c:otherwise>
230
			</c:choose>
231
		</strong></td>
232
	</tr>
233
	<tr>
234
		<td width="10%">&nbsp;</td>
235
		<td width="50%"><bean:message key="content_payee_max_payment_amount"/>:</td>
236
		<td><strong>
237
			<c:choose>
238
				<c:when test="${not empty payeeBean.map.maxPaymentAmount}">
239
					<c:out value="${payeeBean.map.maxPaymentAmount}"/>
240
				</c:when>
241
				<c:otherwise>-</c:otherwise>
242
			</c:choose>
243
		</strong></td>
244
	</tr>
245
	<tr>
246
		<td width="10%">&nbsp;</td>
247
		<td width="50%"><bean:message key="content_payee_saving_trancode"/>:</td>
248
		<td><strong>
249
			<c:choose>
250
				<c:when test="${not empty payeeBean.map.savingTrancode}">
251
					<c:out value="${payeeBean.map.savingTrancode}"/>
252
				</c:when>
253
				<c:otherwise>-</c:otherwise>
254
			</c:choose>
255
		</strong></td>
256
	</tr>
257
	<tr>
258
		<td width="10%">&nbsp;</td>
259
		<td width="50%"><bean:message key="content_payee_current_trancode"/>:</td>
260
		<td><strong>
261
			<c:choose>
262
				<c:when test="${not empty payeeBean.map.currentTrancode}">
263
					<c:out value="${payeeBean.map.currentTrancode}"/>
264
				</c:when>
265
				<c:otherwise>-</c:otherwise>
266
			</c:choose>
267
		</strong></td>
268
	</tr>
269
	<tr>
270
		<td width="10%">&nbsp;</td>
271
		<td width="50%"><bean:message key="content.payee.saving.trancode.bib"/>:</td>
272
		<td><strong>
273
			<c:choose>
274
				<c:when test="${not empty payeeBean.map.savingTrancodeBIB}">
275
					<c:out value="${payeeBean.map.savingTrancodeBIB}"/>
276
				</c:when>
277
				<c:otherwise>-</c:otherwise>
278
			</c:choose>
279
		</strong></td>
280
	</tr>
281
	<tr>
282
		<td width="10%">&nbsp;</td>
283
		<td width="50%"><bean:message key="content.payee.current.trancode.bib"/>:</td>
284
		<td><strong>
285
			<c:choose>
286
				<c:when test="${not empty payeeBean.map.currentTrancodeBIB}">
287
					<c:out value="${payeeBean.map.currentTrancodeBIB}"/>
288
				</c:when>
289
				<c:otherwise>-</c:otherwise>
290
			</c:choose>
291
		</strong></td>
292
	</tr>
293
	<tr>
294
		<td width="10%">&nbsp;</td>
295
		<td width="50%"><bean:message key="content_payee_type"/>:</td>
296
		<td><strong>
297
			<c:choose>
298
				<c:when test="${not empty payeeBean.map.payeeType}">
299
					<c:out value="${payeeBean.map.payeeType}"/>
300
				</c:when>
301
				<c:otherwise>-</c:otherwise>
302
			</c:choose>
303
		</strong></td>
304
	</tr>
305
306
	<tr>
307
		<td width="10%">&nbsp;</td>
308
		<td width="50%"><bean:message key="content_payee_zakat_charge_amt"/>:</td>
309
		<td><strong>
310
			<c:choose>
311
				<c:when test="${not empty payeeBean.map.chargeZakatPercent}">
312
					<c:out value="${payeeBean.map.chargeZakatPercent}"/>&nbsp;%
313
				</c:when>
314
				<c:otherwise>-</c:otherwise>
315
			</c:choose>
316
		</strong></td>
317
	</tr>
318
	<tr><td colspan="3">&nbsp;</td></tr>
319
</table>
320
321
<table class="tabularForm">
322
	<tr><td colspan="3">&nbsp;</td></tr>
323
<tr>
324
		<td width="10%">&nbsp;</td>
325
		<td width="50%"><bean:message key="content_payee_bill_account_req"/>:</td>
326
		<td><strong>
327
			<c:choose>
328
				<c:when test="${payeeBean.map.billAcctReq eq 1}">
329
					<bean:message key="general.yes"/>
330
				</c:when>
331
				<c:otherwise>
332
					<bean:message key="general.no"/>
333
				</c:otherwise>
334
			</c:choose>
335
		</strong></td>
336
	</tr>
337
	<tr>
338
339
			<td width="10%">&nbsp;</td>
340
		<td width="50%"><bean:message key="content_payee_label_checkDigitForBillAccountNumber"/>:</td>
341
		<td><strong>
342
			<c:choose>
343
				<c:when test="${payeeBean.map.checkDigitForBillAcctNoReq eq 1}">
344
					<bean:message key="general.yes"/>
345
				</c:when>
346
				<c:otherwise>
347
					<bean:message key="general.no"/>
348
				</c:otherwise>
349
			</c:choose>
350
		</strong></td>
351
		</tr>
352
	<tr>
353
		<td width="10%">&nbsp;</td>
354
		<td width="50%"><bean:message key="content_payee_bill_account_display_name_req"/>:</td>
355
		<td><strong>
356
			<c:choose>
357
				<c:when test="${payeeBean.map.acctDisplayNameReq eq 1}">
358
					<bean:message key="general.yes"/>
359
				</c:when>
360
				<c:otherwise>
361
					<bean:message key="general.no"/>
362
				</c:otherwise>
363
			</c:choose>
364
		</strong></td>
365
	</tr>
366
	<tr>
367
		<td width="10%">&nbsp;</td>
368
		<td width="50%"><bean:message key="content_payee_bill_account_display_name"/>:</td>
369
		<td><strong>
370
			<c:choose>
371
				<c:when test="${not empty payeeBean.map.billAcctDispName}">
372
					<c:out value="${payeeBean.map.billAcctDispName}"/>
373
				</c:when>
374
				<c:otherwise>-</c:otherwise>
375
			</c:choose>
376
		</strong></td>
377
	</tr>
378
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
379
		<tr>
380
		<td width="10%">&nbsp;</td>
381
		<td width="50%"><bean:message key="content_payee_bill_account_display_name_ML"/>:</td>
382
		<td><strong>
383
			<c:choose>
384
				<c:when test="${not empty payeeBean.map.billAcctDispNameML}">
385
					<c:out value="${payeeBean.map.billAcctDispNameML}"/>
386
				</c:when>
387
				<c:otherwise>-</c:otherwise>
388
			</c:choose>
389
		</strong></td>
390
	</tr>
391
	</c:if>
392
	<tr>
393
		<td width="10%">&nbsp;</td>
394
		<td width="50%"><bean:message key="content_payee_image_req"/>:</td>
395
		<td><strong>
396
			<c:choose>
397
				<c:when test="${payeeBean.map.imageReq eq 1}">
398
					<bean:message key="general.yes"/>
399
				</c:when>
400
				<c:otherwise>
401
					<bean:message key="general.no"/>
402
				</c:otherwise>
403
			</c:choose>
404
		</strong></td>
405
	</tr>
406
	<tr>
407
	<c:set var="ID" value="${payeeBean.map.ID}"></c:set>
408
		<td width="10%">&nbsp;</td>
409
		<td width="50%"><bean:message key="content_payee_image_url"/>:</td>
410
		<td><strong>
411
			<c:choose>
412
				<c:when test="${payeeBean.map.imageReq eq 1}">
413
					<htmlEL:link action="/ss105/PayeeImageView.do?ID=${ID}" onclick="popUp(this.href,'console',420,530);return false;">
414
						<u><bean:message key="content_payee_image_file"/></u>
415
					</htmlEL:link>
416
				</c:when>
417
				<c:otherwise>-</c:otherwise>
418
			</c:choose>
419
		</strong></td>
420
	</tr>
421
	<tr>
422
		<td width="10%">&nbsp;</td>
423
		<td width="50%"><bean:message key="content_payee_validation_rule"/>:</td>
424
		<td><strong>
425
			<c:choose>
426
				<c:when test="${not empty payeeBean.map.billAccDispNamePattern}">
427
					<c:out value="${payeeBean.map.billAccDispNamePattern}"/>
428
				</c:when>
429
				<c:otherwise>
430
					-
431
				</c:otherwise>
432
			</c:choose>
433
		</strong></td>
434
	</tr>
435
	<tr><td colspan="3">&nbsp;</td></tr>
436
</table>
437
438
439
<table class="tabularForm">
440
	<tr><td colspan="3">&nbsp;</td></tr>
441
442
	<tr>
443
		<td width="10%">&nbsp;</td>
444
		<td width="50%"><bean:message key="content_payee_ref_no_req"/>:</td>
445
		<td><strong>
446
			<c:choose>
447
				<c:when test="${payeeBean.map.refNoReq eq 1}">
448
					<bean:message key="general.yes"/>
449
				</c:when>
450
				<c:otherwise>
451
					<bean:message key="general.no"/>
452
				</c:otherwise>
453
			</c:choose>
454
		</strong></td>
455
	</tr>
456
	<tr>
457
		<td width="10%">&nbsp;</td>
458
		<td width="50%"><bean:message key="content_payee_ref_no_Mandatory"/>:</td>
459
		<td><strong>
460
			<c:choose>
461
				<c:when test="${payeeBean.map.refNoMandatory eq 1}">
462
					<bean:message key="general.yes"/>
463
				</c:when>
464
				<c:otherwise>
465
					<bean:message key="general.no"/>
466
				</c:otherwise>
467
			</c:choose>
468
		</strong></td>
469
	</tr>
470
	<tr>
471
		<td width="10%">&nbsp;</td>
472
		<td width="50%"><bean:message key="content_payee_ref_no_name_req"/>:</td>
473
		<td><strong>
474
			<c:choose>
475
				<c:when test="${payeeBean.map.refNoNameReq eq 1}">
476
					<bean:message key="general.yes"/>
477
				</c:when>
478
				<c:otherwise>
479
					<bean:message key="general.no"/>
480
				</c:otherwise>
481
			</c:choose>
482
		</strong></td>
483
	</tr>
484
	<tr>
485
		<td width="10%">&nbsp;</td>
486
		<td width="50%"><bean:message key="content_payee_ref_no_name_display"/>:</td>
487
		<td><strong>
488
			<c:choose>
489
				<c:when test="${not empty payeeBean.map.refNoNameDisplay}">
490
					<c:out value="${payeeBean.map.refNoNameDisplay}"/>
491
				</c:when>
492
				<c:otherwise>-</c:otherwise>
493
			</c:choose>
494
		</strong></td>
495
	</tr>
496
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
497
	<tr>
498
		<td width="10%">&nbsp;</td>
499
		<td width="50%"><bean:message key="content_payee_ref_no_name_display_ML"/>:</td>
500
		<td><strong>
501
			<c:choose>
502
				<c:when test="${not empty payeeBean.map.refNoNameDisplayML}">
503
					<c:out value="${payeeBean.map.refNoNameDisplayML}"/>
504
				</c:when>
505
				<c:otherwise>-</c:otherwise>
506
			</c:choose>
507
		</strong></td>
508
	</tr>
509
	</c:if>
510
	<tr>
511
		<td width="10%">&nbsp;</td>
512
		<td width="50%"><bean:message key="content_payee_payment_type"/>:</td>
513
		<td><strong>
514
			<c:choose>
515
				<c:when test="${not empty payeeBean.map.paymentType}">
516
					<c:out value="${payeeBean.map.paymentType}"/>
517
				</c:when>
518
				<c:otherwise>-</c:otherwise>
519
			</c:choose>
520
		</strong></td>
521
	</tr>
522
	<tr>
523
		<td width="10%">&nbsp;</td>
524
		<td width="50%"><bean:message key="content_payee_validation_rule"/>:</td>
525
		<td><strong>
526
			<c:choose>
527
				<c:when test="${not empty payeeBean.map.refNoNamePattern}">
528
					<c:out value="${payeeBean.map.refNoNamePattern}"/>
529
				</c:when>
530
				<c:otherwise>
531
					-
532
				</c:otherwise>
533
			</c:choose>
534
		</strong></td>
535
	</tr>
536
	<tr><td colspan="3">&nbsp;</td></tr>
537
</table>
538
<table class="tabularForm">
539
	<tr><td colspan="3">&nbsp;</td></tr>
540
	<tr>
541
		<td width="10%">&nbsp;</td>
542
		<td width="50%"><bean:message key="content_payee_bill_ref_1_req"/>:</td>
543
		<td><strong>
544
			<c:choose>
545
				<c:when test="${payeeBean.map.billRef1Req eq 1}">
546
					<bean:message key="general.yes"/>
547
				</c:when>
548
				<c:otherwise>
549
					<bean:message key="general.no"/>
550
				</c:otherwise>
551
			</c:choose>
552
		</strong></td>
553
	</tr>
554
	<tr>
555
			<td width="10%">&nbsp;</td>
556
			<td width="50%"><bean:message key="content_payee_label_checkDigitForBillReferenceNo1" />:</td>
557
			<td><strong>
558
				<c:choose>
559
					<c:when test="${payeeBean.map.checkDigitForBillRef1Req eq 1}">
560
						<bean:message key="general.yes" />
561
					</c:when>
562
					<c:otherwise>
563
						<bean:message key="general.no" />
564
					</c:otherwise>
565
				</c:choose>
566
		</strong></td>
567
		</tr>
568
	<tr>
569
		<td width="10%">&nbsp;</td>
570
		<td width="50%"><bean:message key="content_payee_bill_ref_1_disp_name_req"/>:</td>
571
		<td><strong>
572
			<c:choose>
573
				<c:when test="${payeeBean.map.billRef1DispNameReq eq 1}">
574
					<bean:message key="general.yes"/>
575
				</c:when>
576
				<c:otherwise>
577
					<bean:message key="general.no"/>
578
				</c:otherwise>
579
			</c:choose>
580
		</strong></td>
581
	</tr>
582
	<tr>
583
		<td width="10%">&nbsp;</td>
584
		<td width="50%"><bean:message key="content_payee_bill_ref_1_disp_name"/>:</td>
585
		<td><strong>
586
			<c:choose>
587
				<c:when test="${not empty payeeBean.map.billRef1DispName}">
588
					<c:out value="${payeeBean.map.billRef1DispName}"/>
589
				</c:when>
590
				<c:otherwise>-</c:otherwise>
591
			</c:choose>
592
		</strong></td>
593
	</tr>
594
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
595
	<tr>
596
		<td width="10%">&nbsp;</td>
597
		<td width="50%"><bean:message key="content_payee_bill_ref_1_disp_name_ML"/>:</td>
598
		<td><strong>
599
			<c:choose>
600
				<c:when test="${not empty payeeBean.map.billRef1DispNameML}">
601
					<c:out value="${payeeBean.map.billRef1DispNameML}"/>
602
				</c:when>
603
				<c:otherwise>-</c:otherwise>
604
			</c:choose>
605
		</strong></td>
606
	</tr>
607
	</c:if>
608
	<!-- <tr>
609
		<td width="10%">&nbsp;</td>
610
		<td><bean:message key="content_payee_bill_ref_1_type"/>:</td>
611
		<td><strong>
612
			<c:choose>
613
				<c:when test="${payeeBean.map.billRef1Type eq 1}">
614
					<bean:message key="general.yes"/>
615
				</c:when>
616
				<c:otherwise>
617
					<bean:message key="general.no"/>
618
				</c:otherwise>
619
			</c:choose>
620
		</strong></td>
621
	</tr>  -->
622
	<tr>
623
		<td width="10%">&nbsp;</td>
624
		<td width="50%"><bean:message key="content_payee_bill_ref_1_mandatory"/>:</td>
625
		<td><strong>
626
			<c:choose>
627
				<c:when test="${payeeBean.map.billRef1Mandatory eq 1}">
628
					<bean:message key="general.yes"/>
629
				</c:when>
630
				<c:otherwise>
631
					<bean:message key="general.no"/>
632
				</c:otherwise>
633
			</c:choose>
634
		</strong></td>
635
	</tr>
636
	<tr>
637
		<td width="10%">&nbsp;</td>
638
		<td width="50%"><bean:message key="content_payee_bill_ref_1_host_field"/>:</td>
639
		<td><strong>
640
			<c:choose>
641
				<c:when test="${not empty payeeBean.map.billRef1HostField}">
642
					<c:out value="${payeeBean.map.billRef1HostField}"/>
643
				</c:when>
644
				<c:otherwise>-</c:otherwise>
645
			</c:choose>
646
		</strong></td>
647
	</tr>
648
	<tr>
649
		<td width="10%">&nbsp;</td>
650
		<td width="50%"><bean:message key="content_payee_image_ref_1_req"/>:</td>
651
		<td><strong>
652
			<c:choose>
653
				<c:when test="${payeeBean.map.imageRef1Req eq 1}">
654
					<bean:message key="general.yes"/>
655
				</c:when>
656
				<c:otherwise>
657
					<bean:message key="general.no"/>
658
				</c:otherwise>
659
			</c:choose>
660
		</strong></td>
661
	</tr>
662
	<tr>
663
		<td width="10%">&nbsp;</td>
664
		<td width="50%"><bean:message key="content_payee_image_ref_1_url"/>:</td>
665
		<td><strong>
666
			<c:choose>
667
				<c:when test="${not empty payeeBean.map.imageRef1Url}">
668
					<c:out value="${payeeBean.map.imageRef1Url}"/>
669
				</c:when>
670
				<c:otherwise>-</c:otherwise>
671
			</c:choose>
672
		</strong></td>
673
	</tr>
674
	<tr>
675
		<td width="10%">&nbsp;</td>
676
		<td width="50%"><bean:message key="content_payee_validation_rule"/>:</td>
677
		<td><strong>
678
			<c:choose>
679
				<c:when test="${not empty payeeBean.map.billRef1DispNamePattern}">
680
					<c:out value="${payeeBean.map.billRef1DispNamePattern}"/>
681
				</c:when>
682
				<c:otherwise>
683
					-
684
				</c:otherwise>
685
			</c:choose>
686
		</strong></td>
687
	</tr>
688
	<tr><td colspan="3">&nbsp;</td></tr>
689
	</table>
690
<table class="tabularForm">
691
	<tr><td colspan="3">&nbsp;</td></tr>
692
	<tr>
693
		<td width="10%">&nbsp;</td>
694
		<td width="50%"><bean:message key="content_payee_bill_ref_2_req"/>:</td>
695
		<td><strong>
696
			<c:choose>
697
				<c:when test="${payeeBean.map.billRef2Req eq 1}">
698
					<bean:message key="general.yes"/>
699
				</c:when>
700
				<c:otherwise>
701
					<bean:message key="general.no"/>
702
				</c:otherwise>
703
			</c:choose>
704
		</strong></td>
705
	</tr>
706
			<tr>
707
			<td width="10%">&nbsp;</td>
708
			<td width="50%"><bean:message key="content_payee_label_checkDigitForBillReferenceNo2" />:</td>
709
			<td><strong>
710
				<c:choose>
711
					<c:when test="${payeeBean.map.checkDigitForBillRef2Req eq 1}">
712
						<bean:message key="general.yes" />
713
					</c:when>
714
					<c:otherwise>
715
						<bean:message key="general.no" />
716
					</c:otherwise>
717
				</c:choose>
718
		</strong></td>
719
		</tr>
720
	<tr>
721
		<td width="10%">&nbsp;</td>
722
		<td width="50%"><bean:message key="content_payee_bill_ref_2_disp_name_req"/>:</td>
723
		<td><strong>
724
			<c:choose>
725
				<c:when test="${payeeBean.map.billRef2DispNameReq eq 1}">
726
					<bean:message key="general.yes"/>
727
				</c:when>
728
				<c:otherwise>
729
					<bean:message key="general.no"/>
730
				</c:otherwise>
731
			</c:choose>
732
		</strong></td>
733
	</tr>
734
	<tr>
735
		<td width="10%">&nbsp;</td>
736
		<td width="50%"><bean:message key="content_payee_bill_ref_2_disp_name"/>:</td>
737
		<td><strong>
738
			<c:choose>
739
				<c:when test="${not empty payeeBean.map.billRef2DispName}">
740
					<c:out value="${payeeBean.map.billRef2DispName}"/>
741
				</c:when>
742
				<c:otherwise>-</c:otherwise>
743
			</c:choose>
744
		</strong></td>
745
	</tr>
746
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
747
	<tr>
748
		<td width="10%">&nbsp;</td>
749
		<td width="50%"><bean:message key="content_payee_bill_ref_2_disp_name_ML"/>:</td>
750
		<td><strong>
751
			<c:choose>
752
				<c:when test="${not empty payeeBean.map.billRef2DispNameML}">
753
					<c:out value="${payeeBean.map.billRef2DispNameML}"/>
754
				</c:when>
755
				<c:otherwise>-</c:otherwise>
756
			</c:choose>
757
		</strong></td>
758
	</tr>
759
	</c:if>
760
	<tr>
761
		<td width="10%">&nbsp;</td>
762
		<td width="50%"><bean:message key="content_payee_bill_ref_2_type"/>:</td>
763
		<td><strong>
764
			<c:choose>
765
				<c:when test="${payeeBean.map.billRef12Type eq 0}">
766
					<bean:message key="general.yes"/>
767
				</c:when>
768
				<c:otherwise>
769
					<bean:message key="general.no"/>
770
				</c:otherwise>
771
			</c:choose>
772
		</strong></td>
773
	</tr>
774
	<tr>
775
		<td width="10%">&nbsp;</td>
776
		<td width="50%"><bean:message key="content_payee_bill_ref_2_mandatory"/>:</td>
777
		<td><strong>
778
			<c:choose>
779
				<c:when test="${payeeBean.map.billRef2Mandatory eq 1}">
780
					<bean:message key="general.yes"/>
781
				</c:when>
782
				<c:otherwise>
783
					<bean:message key="general.no"/>
784
				</c:otherwise>
785
			</c:choose>
786
		</strong></td>
787
	</tr>
788
	<tr>
789
		<td width="10%">&nbsp;</td>
790
		<td width="50%"><bean:message key="content_payee_bill_ref_2_host_field"/>:</td>
791
		<td><strong>
792
			<c:choose>
793
				<c:when test="${not empty payeeBean.map.billRef2HostField}">
794
					<c:out value="${payeeBean.map.billRef2HostField}"/>
795
				</c:when>
796
				<c:otherwise>-</c:otherwise>
797
			</c:choose>
798
		</strong></td>
799
	</tr>
800
	<tr>
801
		<td width="10%">&nbsp;</td>
802
		<td width="50%"><bean:message key="content_payee_image_ref_2_req"/>:</td>
803
		<td><strong>
804
			<c:choose>
805
				<c:when test="${payeeBean.map.imageRef2Req eq 1}">
806
					<bean:message key="general.yes"/>
807
				</c:when>
808
				<c:otherwise>
809
					<bean:message key="general.no"/>
810
				</c:otherwise>
811
			</c:choose>
812
		</strong></td>
813
	</tr>
814
	<tr>
815
		<td width="10%">&nbsp;</td>
816
		<td width="50%"><bean:message key="content_payee_image_ref_2_url"/>:</td>
817
		<td><strong>
818
			<c:choose>
819
				<c:when test="${not empty payeeBean.map.imageRef2Url}">
820
					<c:out value="${payeeBean.map.imageRef2Url}"/>
821
				</c:when>
822
				<c:otherwise>-</c:otherwise>
823
			</c:choose>
824
		</strong></td>
825
	</tr>
826
	<tr>
827
		<td width="10%">&nbsp;</td>
828
		<td width="50%"><bean:message key="content_payee_validation_rule"/>:</td>
829
		<td><strong>
830
			<c:choose>
831
				<c:when test="${not empty payeeBean.map.billRef2DispNamePattern}">
832
					<c:out value="${payeeBean.map.billRef2DispNamePattern}"/>
833
				</c:when>
834
				<c:otherwise>
835
					-
836
				</c:otherwise>
837
			</c:choose>
838
		</strong></td>
839
	</tr>
840
	<tr><td colspan="3">&nbsp;</td></tr>
841
</table>
842
<table class="tabularForm">
843
	<tr><td colspan="3">&nbsp;</td></tr>
844
	<tr>
845
		<td width="10%">&nbsp;</td>
846
		<td width="50%"><bean:message key="content_payee_merchant"/>:</td>
847
		<td><strong>
848
			<c:choose>
849
				<c:when test="${payeeBean.map.merchant eq 1}">
850
					<bean:message key="general.yes"/>
851
				</c:when>
852
				<c:otherwise>
853
					<bean:message key="general.no"/>
854
				</c:otherwise>
855
			</c:choose>
856
		</strong></td>
857
	</tr>
858
	<tr>
859
		<td width="10%">&nbsp;</td>
860
		<td width="50%"><bean:message key="content_payee_merchant_auth_code"/>:</td>
861
		<td><strong>
862
			<c:choose>
863
				<c:when test="${not empty payeeBean.map.mercAuthCode}">
864
					<c:out value="${payeeBean.map.mercAuthCode}"/>
865
				</c:when>
866
				<c:otherwise>-</c:otherwise>
867
			</c:choose>
868
		</strong></td>
869
	</tr>
870
	<tr>
871
		<td width="10%">&nbsp;</td>
872
		<td width="50%"><bean:message key="content_payee_merchant_auth_sub_code"/>:</td>
873
		<td><strong>
874
			<c:choose>
875
				<c:when test="${not empty payeeBean.map.mercAuthSubCode}">
876
					<c:out value="${payeeBean.map.mercAuthSubCode}"/>
877
				</c:when>
878
				<c:otherwise>-</c:otherwise>
879
			</c:choose>
880
		</strong></td>
881
	</tr>
882
	<tr>
883
		<td width="10%">&nbsp;</td>
884
		<td width="50%"><bean:message key="content_payee_recharge_code_indi"/>:</td>
885
		<td><strong>
886
			<c:choose>
887
				<c:when test="${payeeBean.map.rechargecodeIndic eq 1}">
888
					<bean:message key="general.yes"/>
889
				</c:when>
890
				<c:otherwise>
891
					<bean:message key="general.no"/>
892
				</c:otherwise>
893
			</c:choose>
894
		</strong></td>
895
	</tr>
896
	<tr>
897
		<td width="10%">&nbsp;</td>
898
		<td width="50%"><bean:message key="content_payee_recharge_code_name"/>:</td>
899
		<td><strong>
900
			<c:choose>
901
				<c:when test="${not empty payeeBean.map.rechargeCodename}">
902
					<c:out value="${payeeBean.map.rechargeCodename}"/>
903
				</c:when>
904
				<c:otherwise>-</c:otherwise>
905
			</c:choose>
906
		</strong></td>
907
	</tr>
908
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
909
		<tr>
910
		<td width="10%">&nbsp;</td>
911
		<td width="50%"><bean:message key="content_payee_recharge_code_name_ML"/>:</td>
912
		<td><strong>
913
			<c:choose>
914
				<c:when test="${not empty payeeBean.map.rechargeCodenameML}">
915
					<c:out value="${payeeBean.map.rechargeCodenameML}"/>
916
				</c:when>
917
				<c:otherwise>-</c:otherwise>
918
			</c:choose>
919
		</strong></td>
920
	</tr>
921
	</c:if>
922
	<tr>
923
		<td width="10%">&nbsp;</td>
924
		<td width="50%"><bean:message key="content_payee_serial_no_indi"/>:</td>
925
		<td><strong>
926
			<c:choose>
927
				<c:when test="${payeeBean.map.serialNoIndicator eq 1}">
928
					<bean:message key="general.yes"/>
929
				</c:when>
930
				<c:otherwise>
931
					<bean:message key="general.no"/>
932
				</c:otherwise>
933
			</c:choose>
934
		</strong></td>
935
	</tr>
936
	<tr>
937
		<td width="10%">&nbsp;</td>
938
		<td width="50%"><bean:message key="content_payee_serial_no_name"/>:</td>
939
		<td><strong>
940
			<c:choose>
941
				<c:when test="${not empty payeeBean.map.serialNoName}">
942
					<c:out value="${payeeBean.map.serialNoName}"/>
943
				</c:when>
944
				<c:otherwise>-</c:otherwise>
945
			</c:choose>
946
		</strong></td>
947
	</tr>
948
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
949
	<tr>
950
		<td width="10%">&nbsp;</td>
951
		<td width="50%"><bean:message key="content_payee_serial_no_name_ML"/>:</td>
952
		<td><strong>
953
			<c:choose>
954
				<c:when test="${not empty payeeBean.map.serialNoNameML}">
955
					<c:out value="${payeeBean.map.serialNoNameML}"/>
956
				</c:when>
957
				<c:otherwise>-</c:otherwise>
958
			</c:choose>
959
		</strong></td>
960
	</tr>
961
	</c:if>
962
	<tr>
963
		<td width="10%">&nbsp;</td>
964
		<td width="50%"><bean:message key="content_payee_bill_payment_allow"/>:</td>
965
		<td><strong>
966
			<c:choose>
967
				<c:when test="${payeeBean.map.billPaymentAllowed eq 1}">
968
					<bean:message key="general.yes"/>
969
				</c:when>
970
				<c:otherwise>
971
					<bean:message key="general.no"/>
972
				</c:otherwise>
973
			</c:choose>
974
		</strong></td>
975
	</tr>
976
	<tr>
977
		<td width="10%">&nbsp;</td>
978
		<td width="50%"><bean:message key="content_payee_debit_engine_allow"/>:</td>
979
		<td><strong>
980
			<c:choose>
981
				<c:when test="${payeeBean.map.debitEngineAllowed eq 1}">
982
					<bean:message key="general.yes"/>
983
				</c:when>
984
				<c:otherwise>
985
					<bean:message key="general.no"/>
986
				</c:otherwise>
987
			</c:choose>
988
		</strong></td>
989
	</tr>
990
	<tr>
991
		<td width="10%">&nbsp;</td>
992
		<td width="50%"><bean:message key="content_payee_program_linked"/>:</td>
993
		<td><strong>
994
			<c:choose>
995
				<c:when test="${not empty payeeBean.map.programLinked}">
996
					<c:out value="${payeeBean.map.programLinked}"/>
997
				</c:when>
998
				<c:otherwise>-</c:otherwise>
999
			</c:choose>
1000
		</strong></td>
1001
	</tr>
1002
	<tr>
1003
		<td width="10%">&nbsp;</td>
1004
		<td width="50%"><bean:message key="content_payee_payment_desc"/>:</td>
1005
		<td><strong>
1006
			<c:choose>
1007
				<c:when test="${not empty payeeBean.map.paymentDesc}">
1008
					<c:out value="${payeeBean.map.paymentDesc}"/>
1009
				</c:when>
1010
				<c:otherwise>-</c:otherwise>
1011
			</c:choose>
1012
		</strong></td>
1013
	</tr>
1014
	<tr>
1015
		<td width="10%">&nbsp;</td>
1016
		<td width="50%"><bean:message key="content_payee_amount_type"/>:</td>
1017
		<td><strong>
1018
			<c:choose>
1019
				<c:when test="${not empty payeeBean.map.amountType}">
1020
					<c:choose>
1021
						<c:when test="${payeeBean.map.amountType eq 0}">
1022
							<c:out value="Free Input"/>
1023
						</c:when>
1024
						<c:when test="${payeeBean.map.amountType eq 1}">
1025
							<c:out value="Drop Down"/>
1026
						</c:when>
1027
						<c:when test="${payeeBean.map.amountType eq 2}">
1028
							<c:out value="Fix Amount"/>
1029
						</c:when>
1030
						<c:otherwise>-</c:otherwise>
1031
					</c:choose>
1032
				</c:when>
1033
				<c:otherwise>-</c:otherwise>
1034
			</c:choose>
1035
		</strong></td>
1036
	</tr>
1037
	<tr>
1038
		<td width="10%">&nbsp;</td>
1039
		<td width="50%"><bean:message key="content_payee_fix_amount"/>:</td>
1040
		<td><strong>
1041
			<c:choose>
1042
				<c:when test="${not empty payeeBean.map.fixAmount}">
1043
					<c:out value="${payeeBean.map.fixAmount}"/>
1044
				</c:when>
1045
				<c:otherwise>-</c:otherwise>
1046
			</c:choose>
1047
		</strong></td>
1048
	</tr>
1049
	<tr><td colspan="3">&nbsp;</td></tr>
1050
</table>
1051
<table class="tabularForm">
1052
	<tr><td colspan="3">&nbsp;</td></tr>
1053
	<tr>
1054
		<td width="10%">&nbsp;</td>
1055
		<td width="50%"><bean:message key="content_payee_note1_req"/>:</td>
1056
		<td><strong>
1057
			<c:choose>
1058
				<c:when test="${not empty payeeBean.map.note1}">
1059
					<c:out value="${payeeBean.map.note1}"/>
1060
				</c:when>
1061
				<c:otherwise>-</c:otherwise>
1062
			</c:choose>
1063
		</strong></td>
1064
	</tr>
1065
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
1066
		<tr>
1067
		<td width="10%">&nbsp;</td>
1068
		<td width="50%"><bean:message key="content_payee_note1_req_ML"/>:</td>
1069
		<td><strong>
1070
			<c:choose>
1071
				<c:when test="${not empty payeeBean.map.note1ML}">
1072
					<c:out value="${payeeBean.map.note1ML}"/>
1073
				</c:when>
1074
				<c:otherwise>-</c:otherwise>
1075
			</c:choose>
1076
		</strong></td>
1077
	</tr>
1078
	</c:if>
1079
	<tr>
1080
		<td width="10%">&nbsp;</td>
1081
		<td width="50%"><bean:message key="content_payee_note2_req"/>:</td>
1082
		<td><strong>
1083
			<c:choose>
1084
				<c:when test="${not empty payeeBean.map.note2}">
1085
					<c:out value="${payeeBean.map.note2}"/>
1086
				</c:when>
1087
				<c:otherwise>-</c:otherwise>
1088
			</c:choose>
1089
		</strong></td>
1090
	</tr>
1091
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
1092
		<tr>
1093
		<td width="10%">&nbsp;</td>
1094
		<td width="50%"><bean:message key="content_payee_note2_req_ML"/>:</td>
1095
		<td><strong>
1096
			<c:choose>
1097
				<c:when test="${not empty payeeBean.map.note2ML}">
1098
					<c:out value="${payeeBean.map.note2ML}"/>
1099
				</c:when>
1100
				<c:otherwise>-</c:otherwise>
1101
			</c:choose>
1102
		</strong></td>
1103
	</tr>
1104
	</c:if>
1105
	<tr>
1106
		<td width="10%">&nbsp;</td>
1107
		<td width="50%"><bean:message key="content_payee_note3_req"/>:</td>
1108
		<td><strong>
1109
			<c:choose>
1110
				<c:when test="${not empty payeeBean.map.note3}">
1111
					<c:out value="${payeeBean.map.note3}"/>
1112
				</c:when>
1113
				<c:otherwise>-</c:otherwise>
1114
			</c:choose>
1115
		</strong></td>
1116
	</tr>
1117
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
1118
	<tr>
1119
		<td width="10%">&nbsp;</td>
1120
		<td width="50%"><bean:message key="content_payee_note3_req_ML"/>:</td>
1121
		<td><strong>
1122
			<c:choose>
1123
				<c:when test="${not empty payeeBean.map.note3ML}">
1124
					<c:out value="${payeeBean.map.note3ML}"/>
1125
				</c:when>
1126
				<c:otherwise>-</c:otherwise>
1127
			</c:choose>
1128
		</strong></td>
1129
	</tr>
1130
	</c:if>
1131
	<tr><td colspan="3">&nbsp;</td></tr>
1132
</table>
1133
<c:if test="${contentForm.map.hasContentEditAccess eq true}">
1134
<div class="floatRight">
1135
	<htmlEL:form action="/ss105/editPayee.do">
1136
		<htmlEL:hidden property="ID" name="payeeBean"></htmlEL:hidden>
1137
		<htmlEL:submit property="action" styleClass="button floatRight"	onclick="overlay();"><bean:message key="general.button.edit" /></htmlEL:submit>
1138
	</htmlEL:form>
1139
</div>
1140
</c:if>
1141
<c:if test="${contentForm.map.hasContentDeleteAccess eq true}">
1142
<div class="floatRight">
1143
	<htmlEL:form action="/ss105/confirmDeletePayee.do">
1144
		<c:set var="name" value="${payeeBean.map.fullName}"></c:set>
1145
		<htmlEL:hidden property="ID" name="payeeBean"></htmlEL:hidden>
1146
		<htmlEL:hidden property="name" value="${name}"></htmlEL:hidden>
1147
		<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();"><bean:message key="general.button.delete" /></htmlEL:submit>
1148
	</htmlEL:form>
1149
</div>
1150
</c:if>
1151
<div class="floatRight">
1152
	<c:if
1153
		test="${payeeBean.map.checkDigitForBillAcctNoReq eq 0 || payeeBean.map.checkDigitForBillRef1Req eq 0 || payeeBean.map.checkDigitForBillRef2Req eq 0}">
1154
		<htmlEL:form action="/ss105/checkDigitPrerequisiteDetails.do">
1155
			<htmlEL:hidden property="createPayeeInd" name="contentForm" value="details"></htmlEL:hidden>
1156
			<htmlEL:submit styleId="checkDigitButton" property="action" styleClass="button floatRight" onclick="overlay();"><bean:message key="content_payee_button_checkDigit" /></htmlEL:submit>
1157
		</htmlEL:form>
1158
	</c:if>
1159
</div>
1160
<c:choose>
1161
	<c:when test="${contentForm.map.isSearch eq true}">
1162
		<htmlEL:form action="/ss105/searchPayeeResult.do?p=${payeeBean.map.currentPage}">
1163
			<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
1164
				<bean:message key="general.button.back"/>
1165
			</htmlEL:submit>
1166
		</htmlEL:form>
1167
	</c:when>
1168
	<c:otherwise>
1169
		<htmlEL:form action="/ss105/subContentCategory.do?p=${payeeBean.map.currentPage}">
1170
			<htmlEL:hidden property="categoryID" value="${contentForm.map.categoryID}"></htmlEL:hidden>
1171
			<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
1172
				<bean:message key="general.button.back"/>
1173
			</htmlEL:submit>
1174
		</htmlEL:form>
1175
	</c:otherwise>
1176
</c:choose>
1177