%@ page contentType="text/html; charset=GBK" language="java" import="java.sql.*" errorPage="errorpage.jsp" %>
<%
String thisPage="desktop.jsp";
if (!Login.isLogin(request)){
response.sendRedirect("login.jsp");
}
if (!Login.verifyPermit(request,Login.CAN_VIEW_USER) ){
response.sendRedirect("noprivilege.jsp");
}
else{
if (!Options.loadDefaultOptions()){
response.sendRedirect("lostoptions.jsp");
}
if (!Users.findByRequest(request)){
response.sendRedirect("noprivilege.jsp");
}
}
%>
重点技改项目进度
| 当前国债项目上报年月:<%=Options.getCurrentYearMonth()==null?"未录入":Options.getCurrentYearMonth().toString().substring(0,4)+"年"+Options.getCurrentYearMonth().toString().substring(5,7)+"月"%>
当前省重点项目上报年月:<%=Options.getDate2()==null?"未录入":Options.getDate2().toString().substring(0,4)+"年"+Options.getDate2().toString().substring(5,7)+"月"%> |
|
<%
boolean hasData=Projects.findProjects(request);
%>
| 序号 |
项目名称 |
项目类型 |
所属企业 |
地区 |
行业 |
最后进度 |
<%
int i=1;
while(hasData){%>
|
<%=i%> |
">
|
<%if ("1".equalsIgnoreCase(Projects.getGz())){%>
国债(第批)
<%}%> <%if ("1".equalsIgnoreCase(Projects.getSg())){%>
双高一优(第批)
<%}%> <%if ("1".equalsIgnoreCase(Projects.getSzd())){%>省重点技改<%}%> |
">
|
|
|
<%=Projects.getCutOffDate()==null?"未录入":Projects.getCutOffDate().toString().substring(0,4)+"年"+Projects.getCutOffDate().toString().substring(5,7)+"月"%> |
<%hasData=Projects.next();
i++;
}
%>
|
<%
Options.close();
Users.close();
Projects.close();
%>