📄 confirmlist.jsp
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="cn.com.aheadsoft.recordset.ApplyDetailRecordSet" %>
<%@ page import="cn.com.aheadsoft.util.StringFormat" %>
<%@ page import="cn.com.aheadsoft.business.PersonInfoBusiness, cn.com.aheadsoft.recordset.PersonInfoRecordSet"%>
<%@ page import="cn.com.aheadsoft.util.UserInfo" %>
<jsp:useBean id="upm" scope="session" class="cn.com.aheadsoft.manage.UserPurviewManage"/>
<% UserInfo userinfo = (UserInfo)session.getAttribute("userinfo");
int i34 = upm.getUserPopInt(userinfo,"3","4","i");//任务立项正式立项权限
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
<title>财务管理流程步骤设置</title>
<%
ApplyDetailRecordSet appDetailRs = (ApplyDetailRecordSet)request.getAttribute("ApplyDetail");
%>
<script>
<!--
function openWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}
function openWin(url) {
window.open(url,'','toolbar=no,location=no,menubar=no,resizable=1,scrollbars=no,left=10,top=20,width=770,height=450');
}
-->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" >
<tr height="8">
<td class="trA"> 您的位置:任务管理 >> 任务立项 >><font class="fontcolor"> 正式立项</font></td>
</tr>
<tr height="8">
<td></td>
</tr>
<tr>
<td align="center" valign="top" >
<table border="0" width="98%" align="center" class="collapse">
<tr >
<td colspan="12" class="tdA">待正式立项申请列表</td>
</tr>
<tr >
<td width="21%" class="tdB" align="center" nowrap>任务名称</td>
<td align="left" class="tdB" width="6%" nowrap>分管</td>
<td align="left" class="tdB" width="8%" nowrap >负责部门</td>
<td align="left" class="tdB" width="6%" nowrap >负责人</td>
<td align="left" class="tdB" width="6%" nowrap> 助理 </td>
<td align="right" class="tdB" width="6%" nowrap>意向</td>
<td align="right" class="tdB" width="6%" nowrap>预支</td>
<td width="6%" class="tdB" align="right" nowrap>合同</td>
<td width="8%" class="tdB" align="left" nowrap>任务级别</td>
<td width="10%" class="tdB" align="left" nowrap>开始日期</td>
<td width="10%" class="tdB" align="left" nowrap>完成日期</td>
<td width="8%" class="tdB" align="center" nowrap> 操作 </td>
</tr>
<%
if(appDetailRs != null && appDetailRs.size() > 0) {
int num = 1;
while(appDetailRs.next()) {
%>
<tr <%
if(num%2==0){
%> class="bgcolor"<%}%> >
<td class="common" align="left" width="33%"><%if(i34>0){%><a href="javascript:openWin('/krm/servlet/ApplyDetailServlet?status=q&module=s&AD_ID=<%=appDetailRs.getAD_Serial()%>');"><%}%><%= StringFormat.changeHTMLTags(appDetailRs.getAD_Topic()) %></a></td>
<td class="common" nowrap align="left"><%= StringFormat.changeHTMLTags(appDetailRs.getI_Name()) %></td>
<td align="left" class="common" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getD_Name()) %></td>
<td class="common" align="left" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_ManagerName()) %></td>
<td class="common" align="left" ><%//out.print(appDetailRs.getAD_AidPerson());
//String aidpersonid = appDetailRs.getAD_AidPerson();
String aidpersonid = appDetailRs.getAD_AidPerson();
if((appDetailRs.getAD_AidPerson().equals("")))
{ out.println("");
}else{
PersonInfoBusiness bibu = new PersonInfoBusiness();
bibu.setQueryWhere(aidpersonid);
bibu.execute("query");
PersonInfoRecordSet PiRdSet = bibu.getRecordSet();
PiRdSet.next();
out.println(StringFormat.changeHTMLTags(PiRdSet.getI_Name()));
}%>
</td>
<td class="common" align="right"nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_WantMoney()) %></td>
<td class="common" align="right" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_PreMoney()) %></td>
<td class="common" align="right" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_ContactMoney()) %></td>
<td class="common" align="left" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_Importance()) %></td>
<td class="common" align="left" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_Begin()) %></td>
<td class="common" align="left" nowrap><%= StringFormat.changeHTMLTags(appDetailRs.getAD_End()) %></td>
<td class="common" align="center" nowrap>
<a href="javascript:openWin('/krm/servlet/ApplyDetailServlet?status=q&module=t&AD_ID=<%=appDetailRs.getAD_Serial()%>');">查看</a>
<%if(i34>0){%>
<a href="/krm/servlet/TaskAppConfirmServlet?status=q&module=i&AD_ID=<%=appDetailRs.getAD_Serial()%>">立项</a>
<%}else{%>
立项
<%}%>
</td>
</tr>
<%
num++;
}
}
%>
<tr>
<td colspan="12" align="center" class="tdC">
<input type="button" value="返 回" onmouseover="this.className='button2'" onmouseout="this.className='button1'" class="button1" onClick="javascript:document.location.href='/krm/servlet/TaskAppTransferServlet?status=q'">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -