99 lines
5.0 KiB
Plaintext
99 lines
5.0 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
|
pageEncoding="ISO-8859-1"%>
|
|
<%@page language="java" session="true" %>
|
|
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
|
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<link href="/matrix/css/jquery-ui.css" rel="stylesheet" type="text/css" />
|
|
|
|
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/ui/jquery-ui.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/appjs/ctransfer.js" type="text/javascript"></script>
|
|
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
|
|
|
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/bootstrap-5.3.8.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/matrix-v2.css?v=6" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/tool-workspace-v3.css?v=2" rel="stylesheet" type="text/css" />
|
|
<link href="/matrix/css/operations-utilities-v1.css?v=1" rel="stylesheet" type="text/css" />
|
|
|
|
<title>Cygnus 1.0 | Fraud Bulletin</title>
|
|
<script src="/matrix/js/matrix-accessibility-v1.js?v=1" defer></script>
|
|
<link href="/matrix/css/matrix-theme-v2.css?v=4" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body class="matrix-shell matrix-v2 matrix-tool-workspace matrix-operations-utility matrix-fraud-bulletin">
|
|
<div id='PageFrame'>
|
|
<!-- Title Bar -->
|
|
<%@ include file="/WEB-INF/app/fragments/app-title.jspf" %>
|
|
<input type="hidden" value="${Sessvals.getUserID()}" id="usid" />
|
|
<!-- -->
|
|
<div id="formcontainer" class="matrix-tool-workspace__content">
|
|
<!-- Title -->
|
|
<div class="title">
|
|
<img class="matrix-title-icon" src="/matrix/images/transfer.png" align="absmiddle" />
|
|
<span class="matrix-title-text" align="absmiddle">Fraud Bulletin<span id='recfound'></span></span>
|
|
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('getpendingfraudbulletin','_parent','getpendingfraudbulletin')"/>
|
|
</div>
|
|
<!-- -->
|
|
<div id="FormPanel" class="FormPanel">
|
|
<form method="post" name="getpendingfraudbulletin"><input type="hidden" value="" name="negid" id="negid" /></form>
|
|
<div id="TablePanel" class="tableContainer">
|
|
<table border="0" cellspacing="0" width="100%" id="fraudlist">
|
|
<thead class="thead">
|
|
<tr title="Row Title">
|
|
<td width="50" style="font-size:9pt">S.No</td>
|
|
<td style="font-size:9pt">Remarks</td>
|
|
<td width="80" style="font-size:9pt">Delete</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="alloclistbody" class="scrollContent">
|
|
<c:forEach items="${fraudcases}" var="fraud" varStatus="record">
|
|
<tr id="row-${record.count}">
|
|
<td style="font-size:9pt;border-bottom:1px dotted #C3C3C3;padding-bottom:5px;padding-top:5px;font-weight:normal">
|
|
${record.count}
|
|
</td>
|
|
<td style="font-size:9pt;border-bottom:1px dotted #C3C3C3;padding-bottom:5px;padding-top:5px;font-weight:normal;text-transform: none">
|
|
${fraud[0]}
|
|
</td>
|
|
<td style="font-size:9pt;border-bottom:1px dotted #C3C3C3;padding-bottom:5px;padding-top:5px;font-weight:normal;text-transform: none">
|
|
<button id="btndelete" onclick="updateAsBroadcasted(${fraud[1]})">Done</button>
|
|
</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<!-- Page Load Javascript -->
|
|
<script language="javascript" type="text/javascript">
|
|
function updateAsBroadcasted(negid){
|
|
document.getElementById('negid').value = negid;
|
|
SubmitForm('getpendingfraudbulletin','_parent','getpendingfraudbulletin');
|
|
}
|
|
</script>
|
|
<!-- -->
|
|
<!-- Process Message -->
|
|
<c:if test="${not empty msg}">
|
|
<script language="javascript" type="text/javascript"> CallMessage('${msg}',5000,200,300); </script>
|
|
</c:if>
|
|
<!-- -->
|
|
</html>
|