BasePayManage.jsp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:8k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312"%>
  2. <%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
  3. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  7. <title>基本工资管理-- GForce OA 2.0</title>
  8. <link href="../css/txt.jsp" rel="stylesheet" type="text/css">
  9. <script language="JavaScript" src="/js/changestyle.js"></script>
  10. </head>
  11. <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
  12.    <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  13.     <tr>
  14.     <td align="center" valign="top">
  15.       <table width="100%" border="0" cellpadding="0" cellspacing="0">
  16.         <tr>
  17.           <td height="50" valign="top" background="../images/dy-back.gif">
  18.             <table width="100%" border="0" cellpadding="0" cellspacing="0">
  19.               <tr valign="middle">
  20.                 <td width="61" align="center" height="20"><img src="../images/dy-01.gif" width="38" height="36"></td>
  21.                 <td width="118" nowrap="nowrap" valign="middle"><strong><font color="#000000">工资基本信息</font></strong></td>
  22.                 <td align="right" nowrap="nowrap" valign="bottom">&nbsp;
  23.                    <!-- 群增<img src="../images/MulAdd.gif" onMouseOver="this.src='../images/MulAdd_a.gif';" onMouseOut="this.src='../images/MulAdd.gif';" border="0" height="22" width="59">&nbsp;-->
  24.                   <!--单增<img src="../images/Single.gif" onMouseOver="this.src='../images/Single_a.gif';" onMouseOut="this.src='../images/Single.gif';" border="0" height="22" width="59">&nbsp;-->
  25.                   <!-- 修改<img src="../images/Update.gif" onMouseOver="this.src='../images/Update_a.gif';" onMouseOut="this.src='../images/Update.gif';" border="0" height="22" width="59">&nbsp;-->
  26.                   <!-- 删除<img src="../images/Del.gif" onMouseOver="this.src='../images/Del_a.gif';" onMouseOut="this.src='../images/Del.gif';" border="0" height="22" width="59">&nbsp;-->
  27.                   <!-- 查看<img src="../images/Query.gif" onMouseOver="this.src='../images/Query_a.gif';" onMouseOut="this.src='../images/Query.gif';" border="0" height="22" width="59">&nbsp;-->
  28.                   <!-- 组合查询<img src="../images/GroupQuery.gif" onMouseOver="this.src='../images/GroupQuery_a.gif';" onMouseOut="this.src='../images/GroupQuery.gif';" border="0" height="22" width="79">&nbsp;-->
  29.                 </td>
  30.               </tr>
  31.             </table>
  32.           </td>
  33.         </tr>
  34.       </table>
  35. <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  36.     <tr>
  37.         <td align="center" valign="top"><p>&nbsp;</p>
  38.             <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
  39.                 <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
  40.                     <th width="4%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
  41.                     <th width="4%" nowrap><font color="#000000">序号</font></th>
  42.                     <th width="8%" nowrap><font color="#000000">姓名</font></th>
  43.                     <th width="8%" nowrap><font color="#000000">员工编号</font></th>
  44. <%
  45. Request m_request = new Request(request);
  46. int iPageSize = 15;
  47. int iPage = m_request.GetInt("Page");
  48. BasePayManager.Initalize();
  49. String strPayTypeID = ",";
  50. Vector vt = PayTypeManager.getAllRecord();
  51. int iPayTypeCount = vt.size();
  52. for (int i=0;i<vt.size();i++)
  53. {
  54.  out.println("<th width="8%" nowrap><font color="#000000">" + ((Vector)vt.get(i)).get(1).toString() + "</font></th>");
  55.  if (((Vector)vt.get(i)).get(1).toString().indexOf("*") >= 0) strPayTypeID = strPayTypeID + ((Vector)vt.get(i)).get(0).toString() + ",";
  56. }
  57. %>
  58.                     <th width="8%" nowrap><font color="#000000">合计</font></th>
  59.                     <th width="8%" nowrap><font color="#000000">修改</font></th>
  60.                 </tr>
  61. <%
  62. vt = BasePayManager.getRecord();
  63. iPageSize = iPageSize  * iPayTypeCount;
  64. if(iPage<1)iPage=1;
  65. int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
  66. if(iPage>iPageCount) iPage=1;
  67. int k=0;
  68. for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;k++)
  69. {
  70.     String strID = ((Vector)vt.get(i)).get(0).toString();
  71.     if( k % 2 == 0)
  72.     out.println("<tr id="Row"+ k + "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
  73.     else
  74.     out.println("<tr id="Row"+ k + "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
  75.     out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
  76.     out.println("<td align="center" valign="middle">" + (((int)i/iPayTypeCount) + 1) + "</td>");
  77.     out.println("<td align="center" valign="middle" nowrap>" + ((Vector)vt.get(i)).get(5).toString() + "</td>");
  78.     out.println("<td align="center" valign="middle" nowrap>" + ((Vector)vt.get(i)).get(4).toString() + "</td>");
  79.     //***************获取基本工资的条目和工资
  80.     long SumPay = 0;
  81.     for(int j=0;j<iPayTypeCount;j++,i++)
  82.     {
  83.       String strPay = ((Vector)vt.get(i)).get(3).toString();
  84.       if(strPay.length()>1)
  85.         out.println("<td align="right" valign="middle" nowrap>" + strPay.substring(0,strPay.length()-2) + "</td>");
  86.       else
  87.         out.println("<td align="right" valign="middle" nowrap>" + strPay + "&nbsp;</td>");
  88.       try
  89.       {
  90.         if(strPayTypeID.indexOf(","+((Vector)vt.get(i)).get(2).toString()+",") < 0)
  91.         {
  92.           SumPay += (int)(Float.parseFloat(strPay) * 100);
  93.         }
  94.       }
  95.       catch(Exception err)
  96.       {
  97.       }
  98.     }
  99.     out.println("<td align="right" valign="middle" nowrap>" + (float)((float)SumPay/100) + "</td>");
  100.     out.println("<td align="center" valign="middle" nowrap><a href="EditBasePay.jsp?ID=" + ((Vector)vt.get(i-1)).get(1).toString() + "" target="_blank">修改</a></td>");
  101. }
  102. //********************************总计
  103.     out.println("<tr><th align="center" valign="top" colspan=""+ 4 +"">");
  104.     out.print("总  计");
  105.     out.println("</th>");
  106. long SumPay = 0;
  107. Vector vt2 = BasePayManager.getSUMPayRecord();
  108. vt = PayTypeManager.getAllRecord();
  109. for(int i=0;i<vt2.size();i++)
  110. {
  111.   String strPay=((Vector)vt2.get(i)).get(0).toString();
  112.   out.println("<th nowrap>" + strPay.substring(0,strPay.length()-2) + "</th>");
  113.   if (((Vector)vt.get(i)).get(1).toString().indexOf("*") < 0)
  114.   {
  115.     SumPay += (int)(Float.parseFloat(strPay) * 100);
  116.   }
  117. }
  118. out.println("<th align="right" valign="top" colspan="2" nowrap>" + (float)((float)SumPay/100) + "" + "</th>");
  119. out.println("</tr><tr><th align="center" valign="top" colspan=""+(vt2.size()+4)+"">");
  120. String strCurrentPageURL = request.getRequestURI();
  121. if(iPage<2)
  122. out.print("首页&nbsp;&nbsp;上页");
  123. else
  124. out.print("<a href=""+ strCurrentPageURL+"?Page=" + 1 + "">首页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + (iPage-1) + "">上页</a>");
  125. out.print("&nbsp;&nbsp;当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页&nbsp;&nbsp;");
  126. if(iPage>=iPageCount)
  127. out.print("下页&nbsp;&nbsp;末页");
  128. else
  129. out.print("<a href=""+ strCurrentPageURL+"?Page=" + (iPage+1) + "">下页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + iPageCount + "">末页</a>");
  130. out.println("</th><th align="center" valign="top" colspan=""+ 2 +"">跳转到第<select name="gopage" onchange="self.location='"+strCurrentPageURL +"?Page='+this.value;">");
  131. for(int i=0;i<iPageCount;i++)
  132. if(i+1==iPage)
  133. out.println("<option value="" +(i+1) +"" selected>" +(i+1) +"</option>");
  134. else
  135. out.println("<option value="" +(i+1) +"">" +(i+1) +"</option>");
  136. out.println("</select>页</th>");
  137. %>
  138.         </table>
  139.         </td>
  140.     </tr>
  141. </table>
  142. </body>
  143. </html>