📄 showallauditedorglist.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.Iterator" %>
<%@ page import="java.util.List" %>
<%@ page import="com.icss.cnpc.plan.vo.PlanInfo" %>
<%@ page import="com.icss.cnpc.plan.vo.AuditedOrgInfo" %>
<%@ page import="com.icss.cnpc.base.vo.TexorginfoVO" %>
<%@ page import="com.icss.cnpc.util.Config" %>
<%
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
%>
<%
List auditedList=(List)request.getAttribute("auditedList");
%>
<script>
function showunitinfo(auditedorgid)
{
wx=800;
wy=500;
urlstr="<%=request.getContextPath()%>/servlet/ViewAuditedOrgInfoServlet?auditedorgid="+auditedorgid;
x=(window.screen.width-wx)/2;
y=(window.screen.height-wy)/2;
wposition=",left="+x+",top="+y;
window.open(urlstr,"查看被审单位信息","width="+wx+",height="+wy+",scrollbars=yes,status=no"+wposition);
}
</script>
<HTML><HEAD><TITLE>被审单位列表</TITLE>
<link rel="stylesheet" href="<%=request.getContextPath()%>/css/style.css">
<META content="MSHTML 6.00.2800.1170" name=GENERATOR>
<style type="text/css">
<!--
.style2 {
font-size: 12px;
font-weight: bold;
}
.style3 {font-size: 16px}
-->
</style>
<BODY text=#000000 leftMargin=0 background=../images/grid.gif topMargin=10>
<form name="form1" method="post">
<TABLE cellSpacing=0 cellPadding=0 width="90%" align=center border=0>
<TR>
<TD align=middle>
<TABLE cellSpacing=1 borderColorDark=#dfdfff cellPadding=2
width="100%" align=center bgColor=#b3c4db borderColorLight=#003366 border=0>
<TR bgcolor="#a6d0f2">
<TD align=middle colSpan=6 height=30><div align="center" class="style1">
<div align="center" class="style3">被 审 单 位 列 表
</div>
</TD>
</TR>
<TR onmouseover="this.bgColor='#EBEBEB';" onmouseout="this.bgColor='#EEF4FF';" bgColor=#eef4ff>
<TD width="10%" align=center><strong>序号</strong>
</TD>
<TD width="45%" height="25" align=middle>
<div align="center" class="style2">被审单位名称</div>
</TD>
<TD width="15%" align=center>
<div align="center" class="style2">资产总额</div>
</TD>
<TD width="30%" align=center>
<div align="center" class="style2">中石油编码</div>
</TD>
</TR>
<% if(auditedList!=null && auditedList.size()!=0)
{
int num=0;
for(Iterator i=auditedList.iterator();i.hasNext();)
{
num++;
TexorginfoVO Info=(TexorginfoVO)i.next();
String auditedorgid=Info.getOrguuid();
String auditedorgname=Info.getUnitname();
String tempauditedname="";
if(auditedorgname !=null && auditedorgname.length()>15)
{
tempauditedname=auditedorgname.substring(0,14);
tempauditedname+="..";
}
else if(auditedorgname !=null)
tempauditedname=auditedorgname;
Double assets=Info.getAssets();
String code=Info.getCnpcno();
String unitcode=Info.getUnitcode();
%>
<TR onmouseover="this.bgColor='#EBEBEB';" onmouseout="this.bgColor='#EEF4FF';" bgColor=#eef4ff>
<TD align=middle><%=num%></td>
<TD align=middle><a href="#" title="<%=auditedorgname%>" onClick="showunitinfo('<%=unitcode%>')" >
<%=tempauditedname%></a></td>
<TD align=middle><%if(assets!=null && assets.intValue()!=0)out.print(assets);%></td>
<TD align=middle><%=code%></td>
</tr>
<%}}%>
</TABLE>
</TD>
</TR>
</TABLE>
<br>
<TR align="center">
<TD align="center">
<p align="center"><img src="../images/close.gif" style="cursor:hand;" align="absmiddle" alt="关闭" onClick="window.close()"> </p>
</td>
</tr>
</TBODY>
</TABLE>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -