talentsInfo.jsp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  4. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  5. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  6. <%@ taglib uri="/WEB-INF/tlds/select.tld" prefix="l"%>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <title>人才信息</title>
  11. <link href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  12. <link href="${pageContext.request.contextPath }/main.css" rel="stylesheet" type="text/css"/>
  13. <script src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
  14. <script src="${pageContext.request.contextPath}/liger/lib/ligerUI/js/ligerui.all.js" type="text/javascript"></script>
  15. <script type="text/javascript" src="/shares/js/constant.js"></script>
  16. <script type="text/javascript" src="/shares/js/common.js"></script>
  17. <script type="text/javascript" src="/shares/js/file.js"></script>
  18. <script type="text/javascript">
  19. var navtab = null;
  20. $(function ()
  21. {
  22. $("#tab1").ligerTab();
  23. navtab = $("#tab1").ligerGetTabManager();
  24. var flag="${flag}";
  25. if(flag.length>0){
  26. var succMsg = '<a href="#">操作成功!';
  27. // +' <br/><br/>是否继续创建新的项目?<br/><br/>是否继续?'
  28. $.ligerDialog({content:succMsg, title:"操作成功",type:"success",width:250,height:55,allowClose : false,
  29. buttons:[ {text:"关闭",onclick:function(){closeAndReload();closeWindow();}}]
  30. });
  31. }
  32. });
  33. //关闭当前页面刷新列表必须要传入tabid
  34. function closeAndReload(){
  35. var old_tabid = '${tabid}';
  36. if(old_tabid.length > 0){
  37. var tabid = getCurrentTabId();
  38. window.parent.f_selectTab(old_tabid);
  39. window.parent.f_reloadTab(old_tabid);
  40. window.parent.f_closeTab(tabid);
  41. }
  42. }
  43. function person_status(){
  44. var person_status = $('#person_status').val();
  45. var staff_id =$('#staff_id').val();
  46. var temp ='';
  47. if(person_status==5){
  48. temp ='是否面试通过';
  49. }else if(person_status==4){
  50. temp ='是否面试不通过';
  51. }else if(person_status==3){
  52. temp ='是否目前不适合';
  53. }
  54. $.ligerDialog.confirm(temp, function (yes){
  55. if(yes ==true){
  56. alert("com");
  57. window.location.href='TelentsAction.do?task=person_status&staff_id='+staff_id+'&id='+person_status;
  58. }
  59. });
  60. }
  61. function go_back(){
  62. window.location.href='TelentsAction.do?task=init';
  63. }
  64. </script>
  65. </head>
  66. <body>
  67. <br/>
  68. <div style="margin-bottom: 0px;">
  69. <form method='post' name="theForm" id="theForm"
  70. action="TelentsAction.do?task=person_status">
  71. <input type="hidden" id="tabid" name="tabid" value="${param.tabid }" />
  72. <c:forEach items="${list }" var="list">
  73. <input type="hidden" value="${list.staff_id }" name="staff_id"/>
  74. </c:forEach>
  75. <select id="id" name="id">
  76. <option value="5">面试通过</option>
  77. <option value="4">面试不通过</option>
  78. <option value="3">目前不适合</option>
  79. </select>
  80. <input type="submit" value="保存" class="l-button" />
  81. <input type="button" value="返回" class="l-button" onclick="go_back();"/>
  82. </div><br/>
  83. <div id="tab1" style="width: 98%;overflow:hidden; border:1px solid #A3C0E8; ">
  84. <div title="基本信息" style="height:100%" class="forum-container-2">
  85. <c:forEach items="${list }" var="list">
  86. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed; margin-top: 0px" >
  87. <tr>
  88. <td height="35px" width="100px" >姓名 :</td><td width="200px">${list.cname }</td>
  89. <td width="100px">性别 :</td><td width="200px"><c:if test="${list.sex==1 }">男</c:if><c:if test="${list.sex==2 }">女</c:if></td><td rowspan="7"></td></tr>
  90. <tr><td height="35px">出身年月 :</td><td><fmt:formatDate value="${list.birthday }" type="both" pattern="yyyy-MM-dd"/></td><td>籍贯 :</td><td>${list.native_province }&nbsp;&nbsp;${list.native_city }</td></tr>
  91. <tr><td height="35px">民族 :</td><td>${list.nation }</td><td>手机 :</td><td>${list.mobile_phone }</td></tr>
  92. <tr><td height="35px">身份证号码 :</td><td>${list.id_number }</td><td>婚姻状况 :</td><td><c:if test="${list.marital_status==1 }">是</c:if><c:if test="${list.marital_status==0 }">否</c:if></td></tr>
  93. <tr><td height="35px">家庭地址:</td><td>${list.home_address }</td><td>家庭电话 :</td><td>${list.area_code }-${list.home_phone }</td></tr>
  94. <tr><td height="35px">现住地址:</td><td>${list.live_address }</td><td>邮编 :</td><td>${list.code }</td></tr>
  95. <tr><td height="35px">E-mail:</td><td>${list.email }</td><td>语言能力 :</td><td>${list.language }</td></tr>
  96. <tr>
  97. <td height="33px">个人简历:(有何特殊技能、擅长、成果、专长)</td><td colspan="3">${list.bio }</td>
  98. </tr>
  99. <tr>
  100. <td height="33px">应聘途径:</td>
  101. <td colspan="6"><input type="radio" name="employ_way" value="1" ${list.employ_way=='1'?'checked':'' }/>网站信息
  102. <input type="radio" name="employ_way" value="2" ${list.employ_way=='2'?'checked':'' }/>人才市场
  103. <input type="radio" name="employ_way" value="3" ${list.employ_way=='3'?'checked':'' }/>本公司人介绍&nbsp;姓名:<input type="text" size="8" name="referee" id="referee" value="${list.referee }" size="4"/>
  104. <input type="radio" name="employ_way" value="4" ${list.employ_way=='4'?'checked':'' }/>其他&nbsp;<textarea rows="3" cols="30" id="other" name="other">${list.other }</textarea></td>
  105. </tr>
  106. <tr>
  107. <td>期望月薪:</td><td>${list.pay }</td>
  108. <td>应聘岗位:<span style="color: red">*</span></td><td><l:select filter=" unit=${session.unit.id}" require="false" field="posname" name="otherposname" table="t_position" value="universalid" current="${list.posttion}"/></td>
  109. </tr>
  110. </table>
  111. </c:forEach>
  112. </div>
  113. <div title="学历" style="height:100%" class="forum-container-2">
  114. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed; margin-top: 0px">
  115. <tr><td height="33px" width="100px" colspan="4"><b>第一学历</b></td></tr>
  116. <c:forEach items="${edu_list_one }" var="edu_list_one">
  117. <tr><td height="33px">毕业时间:</td><td><fmt:formatDate value="${edu_list_one.gradu_time }" type="both" pattern="yyyy-MM-dd"/></td><td>毕业学校:</td><td>${edu_list_one.school }</td></tr>
  118. <tr><td height="33px">文化程度:</td>
  119. <td>
  120. <c:if test="${edu_list_one.education==1}">
  121. 本科
  122. </c:if>
  123. <c:if test="${edu_list_one.education==2}">
  124. 研究生
  125. </c:if>
  126. <c:if test="${edu_list_one.education==3}">
  127. 博士
  128. </c:if>
  129. <c:if test="${edu_list_one.education==4}">
  130. 专科
  131. </c:if>
  132. <c:if test="${edu_list_one.education==5}">
  133. 其他
  134. </c:if>
  135. <%--
  136. <select id="education">
  137. <option value="1" ${edu_list_one.education=='1'?'selected':'' }>本科</option>
  138. <option value="2" ${edu_list_one.education=='2'?'selected':'' }>研究生</option>
  139. <option value="3" ${edu_list_one.education=='3'?'selected':'' }>博士</option>
  140. <option value="4" ${edu_list_one.education=='4'?'selected':'' }>专科</option>
  141. <option value="5" ${edu_list_one.education=='5'?'selected':'' }>其他</option>
  142. </select>
  143. --%>
  144. </td>
  145. <td>专业:</td><td>${edu_list_one.major }</td></tr>
  146. <tr><td height="33px">升学方式:</td>
  147. <td>
  148. <c:if test="${edu_list_one.go_school==1}">
  149. 统招
  150. </c:if>
  151. <c:if test="${edu_list_one.go_school==2}">
  152. 专升本
  153. </c:if>
  154. <c:if test="${edu_list_one.go_school==3}">
  155. 自考
  156. </c:if>
  157. <c:if test="${edu_list_one.go_school==4}">
  158. 在职
  159. </c:if>
  160. <c:if test="${edu_list_one.go_school==5}">
  161. 函授
  162. </c:if>
  163. <%--
  164. <input type="radio" value="1" ${edu_list_one.go_school=='1'?'checked':'' }/>统招
  165. <input type="radio" value="2" ${edu_list_one.go_school=='2'?'checked':'' }/>专升本
  166. <input type="radio" value="3" ${edu_list_one.go_school=='3'?'checked':'' }/>自考
  167. <input type="radio" value="4" ${edu_list_one.go_school=='4'?'checked':'' }/>在职
  168. <input type="radio" value="5" ${edu_list_one.go_school=='5'?'checked':'' }/>函授
  169. --%>
  170. </td>
  171. <td></td><td></td></tr>
  172. </c:forEach>
  173. <tr><td height="33px" colspan="4"><b>最高学历</b></td></tr>
  174. <c:forEach items="${edu_list_max }" var="edu_list_max">
  175. <tr><td height="33px">毕业时间:</td><td><fmt:formatDate value="${edu_list_max.gradu_time }" type="both" pattern="yyyy-MM-dd"/></td><td>毕业学校:</td><td>${edu_list_max.school }</td></tr>
  176. <tr><td height="33px">文化程度:</td>
  177. <td>
  178. <c:if test="${edu_list_max.education==1}">
  179. 本科
  180. </c:if>
  181. <c:if test="${edu_list_max.education==2}">
  182. 研究生
  183. </c:if>
  184. <c:if test="${edu_list_max.education==3}">
  185. 博士
  186. </c:if>
  187. <c:if test="${edu_list_max.education==4}">
  188. 专科
  189. </c:if>
  190. <c:if test="${edu_list_max.education==5}">
  191. 其他
  192. </c:if>
  193. <%--
  194. <select>
  195. <option value="1" ${edu_list_max.education=='1'?'selected':'' }>本科</option>
  196. <option value="2" ${edu_list_max.education=='2'?'selected':'' }>研究生</option>
  197. <option value="3" ${edu_list_max.education=='3'?'selected':'' }>博士</option>
  198. <option value="4" ${edu_list_max.education=='4'?'selected':'' }>专科</option>
  199. <option value="5" ${edu_list_max.education=='5'?'selected':'' }>其他</option>
  200. </select>
  201. --%>
  202. </td>
  203. <td>专业:</td><td>${edu_list_max.major }</td></tr>
  204. <tr><td height="33px">升学方式:</td>
  205. <td>
  206. <c:if test="${edu_list_max.go_school==1}">
  207. 统招
  208. </c:if>
  209. <c:if test="${edu_list_max.go_school==2}">
  210. 专升本
  211. </c:if>
  212. <c:if test="${edu_list_max.go_school==3}">
  213. 自考
  214. </c:if>
  215. <c:if test="${edu_list_max.go_school==4}">
  216. 在职
  217. </c:if>
  218. <c:if test="${edu_list_max.go_school==5}">
  219. 函授
  220. </c:if>
  221. <%--
  222. <input type="radio" value="1" ${edu_list_max.go_school=='1'?'checked':'' }/>统招
  223. <input type="radio" value="2" ${edu_list_max.go_school=='2'?'checked':'' }/>专升本
  224. <input type="radio" value="3" ${edu_list_max.go_school=='3'?'checked':'' }/>自考
  225. <input type="radio" value="4" ${edu_list_max.go_school=='4'?'checked':'' }/>在职
  226. <input type="radio" value="5" ${edu_list_max.go_school=='5'?'checked':'' }/>函授
  227. --%>
  228. </td>
  229. <td></td><td></td></tr>
  230. </c:forEach>
  231. </table>
  232. </div>
  233. <div title="个人经历、简介" style="height:100%" class="forum-container-2">
  234. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed; margin-top: 0px" width="100%" id="table_work">
  235. <tr><td height="33px"><b>起止时间</b></td><td><b>曾服务单位</b></td><td><b>单位性质</b></td><td><b>职务</b></td><td><b>薪资</b></td><td><b>离职原因</b></td></tr>
  236. <c:forEach items="${job_list }" var="job_list">
  237. <tr><td height="33px"><fmt:formatDate value="${job_list.beg_time}" type="both" pattern="yyyy-MM-dd"/>至<fmt:formatDate value="${job_list.end_time }" type="both" pattern="yyyy-MM-dd"/></td><td>${job_list.work_unit }</td><td>${job_list.unit_nature }</td><td>${job_list.post }</td><td>${job_list.pay }</td><td>${job_list.leaving_reason }</td></tr>
  238. </c:forEach>
  239. </table>
  240. <br/>
  241. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed; margin-top: 0px" width="100%" >
  242. <tr><td height="33px"><b>培训项目</b></td><td><b>培训机构</b></td><td><b>证书编号</b></td><td><b>备注</b></td></tr>
  243. <c:forEach items="${train_list }" var="train_list">
  244. <tr><td height="33px">${train_list.train_item }</td><td>${train_list.org_name }</td><td>${train_list.reference_no }</td><td>${train_list.remark }</td></tr>
  245. </c:forEach>
  246. </table>
  247. </div>
  248. <div title="家庭成员" style="height:100%" class="forum-container-2">
  249. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed; margin-top: 0px" width="100%" >
  250. <tr><td height="33px"><b>称谓</b></td><td><b>姓名</b></td><td><b>年龄</b></td><td><b>服务单位</b></td><td><b>职务</b></td><td><b>电话</b></td></tr>
  251. <c:forEach items="${family_list }" var="family_list">
  252. <tr><td height="33px">${family_list.title }</td><td>${family_list.cname }</td><td>${family_list.age }</td><td>${family_list.unit }</td><td>${family_list.post }</td><td><b>${family_list.phone }</td></tr>
  253. </c:forEach>
  254. </table>
  255. </div>
  256. <div title="相关附件" style="height:100%" class="forum-container-2">
  257. <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed; margin-top: 0px" width="100%" >
  258. <c:forEach items="${affix_list }" var="affix_list">
  259. <tr><td height="33px">
  260. <c:if test="${affix_list.type==1 }">照片</c:if>
  261. <c:if test="${affix_list.type==2 }">毕业证</c:if>
  262. <c:if test="${affix_list.type==3 }">学位证</c:if>
  263. <c:if test="${affix_list.type==4 }">相关技能证</c:if>
  264. </td>
  265. <td> <jsp:include page="/include/file.jsp">
  266. <jsp:param name="fieldName" value="fieldName"/>
  267. <jsp:param name="folder" value="hr/allaffix"/>
  268. <jsp:param name="isView" value="1"/>
  269. <jsp:param name="isDelFile" value="0"/>
  270. <jsp:param name="documentId" value="${affix_list.file_id }"/>
  271. <jsp:param name="size" value="1" />
  272. <jsp:param name="definedCss" value="file-style" />
  273. </jsp:include> </td></tr>
  274. </c:forEach>
  275. </table>
  276. </div>
  277. </div>
  278. </body>
  279. </html>