personnelBaseArchivesManage-update.jsp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <!-- 人事信息 -->
  5. <html>
  6. <head>
  7. <title>员工人事信息表</title>
  8. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  9. <script src="plug-in/layer/layer.js"></script>
  10. <script>
  11. $(function(){
  12. // 合同是否到期提醒
  13. var ifremindVal = $("#ifremind").val();
  14. // 是否续签合同
  15. var ifrenewedVal = $("#ifrenewed").val();
  16. // 是否自动转正
  17. var autoCorrectionVal = $("#autoCorrection").val();
  18. // 是否缴金人员
  19. var ifpaymentVal = $("#ifpayment").val();
  20. if(1 == ifremindVal) {
  21. $("#ifremindYes").attr("checked", true);
  22. }
  23. if(1 == ifrenewedVal) {
  24. $("#ifrenewedYes").attr("checked", true);
  25. }
  26. if(1 == autoCorrectionVal) {
  27. $("#autoCorrectionYes").attr("checked", true);
  28. } else {
  29. $("#autoCorrectionNo").attr("checked", true);
  30. }
  31. if(1 == ifpaymentVal) {
  32. $("#ifpaymentYes").attr("checked", true);
  33. } else {
  34. $("#ifpaymentNo").attr("checked", true);
  35. }
  36. $("#dutieslevel").val("${personnelInfo.dutieslevel}")
  37. })
  38. function autoCorrectionNoOnClick() {
  39. if($("#autoCorrectionYes").attr("checked")) {
  40. $("#autoCorrectionYes").attr("checked", false);
  41. $("#autoCorrectionNo").attr("checked", true);
  42. } else {
  43. $("#autoCorrectionYes").attr("checked", true);
  44. $("#autoCorrectionNo").attr("checked", false);
  45. }
  46. }
  47. function autoCorrectionYesOnClick() {
  48. if($("#autoCorrectionNo").attr("checked")) {
  49. $("#autoCorrectionYes").attr("checked", true);
  50. $("#autoCorrectionNo").attr("checked", false);
  51. } else {
  52. $("#autoCorrectionYes").attr("checked", false);
  53. $("#autoCorrectionNo").attr("checked", true);
  54. }
  55. }
  56. function ifpaymentNoOnClick() {
  57. if($("#ifpaymentYes").attr("checked")) {
  58. $("#ifpaymentYes").attr("checked", false);
  59. $("#ifpaymentNo").attr("checked", true);
  60. } else {
  61. $("#ifpaymentYes").attr("checked", true);
  62. $("#ifpaymentNo").attr("checked", false);
  63. }
  64. }
  65. function ifpaymentYesOnClick() {
  66. if($("#ifpaymentNo").attr("checked")) {
  67. $("#ifpaymentYes").attr("checked", true);
  68. $("#ifpaymentNo").attr("checked", false);
  69. } else {
  70. $("#ifpaymentYes").attr("checked", false);
  71. $("#ifpaymentNo").attr("checked", true);
  72. }
  73. }
  74. // 职务选择
  75. function openDutiesSelect() {
  76. $.dialog.setting.zIndex = getzIndex();
  77. var orgIds = $("#belongDutiesid").val();
  78. $.dialog({content: 'url:dutiesController.do?departSelect&orgIds='+orgIds, zIndex: 2100, title: '职务列表', lock: true, width: '400px', height: '350px', opacity: 0.4, button: [
  79. {name: '<t:mutiLang langKey="common.confirm"/>', callback: callbackDutiesSelect, focus: true},
  80. {name: '<t:mutiLang langKey="common.cancel"/>', callback: function (){}}
  81. ]}).zindex();
  82. }
  83. // 职务回调
  84. function callbackDutiesSelect() {
  85. var iframe = this.iframe.contentWindow;
  86. var treeObj = iframe.$.fn.zTree.getZTreeObj("departSelect");
  87. var nodes = treeObj.getCheckedNodes();
  88. // var nodes = treeObj.getSelectedNodes();
  89. // console.log(nodes);
  90. if(nodes.length>0){
  91. var ids='',names='';
  92. for(var i=0;i<nodes.length;i++){
  93. var node = nodes[i];
  94. ids += node.id+',';
  95. names += node.name+',';
  96. }
  97. ids = ids.substring(0,ids.length - 1);
  98. names = names.substring(0,names.length - 1);
  99. $("#dutiesName").val(names);
  100. $("#dutiesName").blur();
  101. $("#belongDutiesid").val(ids);
  102. }
  103. }
  104. function dutiesClean(){
  105. $("#belongDutiesid").val('');
  106. $("#dutiesName").val('');
  107. }
  108. // 岗位选择
  109. function openPostSelect() {
  110. $.dialog.setting.zIndex = getzIndex();
  111. var orgIds = $("#inPostid").val();
  112. $.dialog({content: 'url:projectPostDetailController.do?postSelectNoCheckBox&orgIds='+orgIds,
  113. zIndex:2100, title: '岗位列表', lock: true, width: '400px', height: '350px', opacity: 0.4, button: [
  114. {name: '<t:mutiLang langKey="common.confirm"/>', callback: callbackPostSelect, focus: true},
  115. {name: '<t:mutiLang langKey="common.cancel"/>', callback: function (){}}
  116. ]}).zindex();
  117. }
  118. // 岗位回调
  119. function callbackPostSelect() {
  120. var iframe = this.iframe.contentWindow;
  121. var treeObj = iframe.$.fn.zTree.getZTreeObj("postSelect");
  122. console.log(treeObj);
  123. var nodes = treeObj.getCheckedNodes(true);
  124. // var nodes = treeObj.getSelectedNodes(true);
  125. // console.log(nodes);
  126. if(nodes.length>0){
  127. var ids='',names='';
  128. for(i=0;i<nodes.length;i++){
  129. var node = nodes[i];
  130. ids += node.id+',';
  131. names += node.name+',';
  132. }
  133. ids = ids.substring(0,ids.length - 1);
  134. names = names.substring(0,names.length - 1);
  135. $("#postName").val(names);
  136. $("#postName").blur();
  137. $("#inPostid").val(ids);
  138. }
  139. }
  140. function postClean(){
  141. $("#postName").val('');
  142. $("#inPostid").val('');
  143. }
  144. // 根据合同期间设置试用期
  145. function probationCount() {
  146. var start = new Date($("#contractStime").val());
  147. var end = new Date($("#contractEtime").val());
  148. var year = (end-start)/(24*60*60*1000*365);
  149. if(year < 3) {
  150. $("#trialPeriod").val("1");
  151. }
  152. if(year >= 3) {
  153. $("#trialPeriod").val("3");
  154. }
  155. }
  156. //重新入职
  157. function reruzhi(){
  158. var start =$("#contractStime").val();
  159. var end = $("#contractEtime").val();
  160. if('${personnelInfo.positionStatus}' != '3'){
  161. alert("此员工已经是在职状态");
  162. return;
  163. }
  164. if('${personnelInfo.contractStime}' == start+' 00:00:00.0'){
  165. alert('请修改重新入职的日期${personnelInfo.contractStime}');
  166. return;
  167. }
  168. if('${personnelInfo.contractEtime}' == end+' 00:00:00.0'){
  169. alert("请修改重新入职的合同终止日期${personnelInfo.contractEtime}");
  170. return;
  171. }
  172. $.ajax({
  173. url:"personnelBaseArchivesManageController.do?reruzhi",
  174. type:"post",
  175. data: {
  176. ids : '${personnelInfo.id}',
  177. start : start,
  178. end : end
  179. },
  180. cache : false,
  181. success:function(aj){
  182. data=JSON.parse(aj);
  183. if (data.success) {
  184. layer.alert("重新入职成功");
  185. window.location.href="personnelBaseArchivesManageController.do?goUpdatePersonnel&id=${personnelInfo.userid}";
  186. } else {
  187. layer.alert(data.msg);
  188. }
  189. }
  190. });
  191. }
  192. //重新入职
  193. function doLeave(){
  194. var leavedate =$("#leavedate").val();
  195. if(leavedate == null || leavedate == ''){
  196. alert("请填写离职日期");
  197. return;
  198. }
  199. $.ajax({
  200. url:"personnelBaseArchivesManageController.do?doLeave",
  201. async:true,
  202. type:"post",
  203. data: {
  204. ids : '${personnelInfo.id}',
  205. leavedate : leavedate
  206. },
  207. cache : false,
  208. success:function(aj){
  209. data=JSON.parse(aj);
  210. if (data.success) {
  211. layer.alert(data.msg);
  212. window.location.href="personnelBaseArchivesManageController.do?goUpdatePersonnel&id=${personnelInfo.userid}";
  213. } else {
  214. layer.alert(data.msg);
  215. }
  216. }
  217. });
  218. }
  219. function btn_ok(){
  220. if($("#ifremindYes").attr("checked")) {
  221. $("#ifremind").val("1");
  222. } else {
  223. $("#ifremind").val("0");
  224. }
  225. if($("#ifrenewedYes").attr("checked")) {
  226. $("#ifrenewed").val("1");
  227. } else {
  228. $("#ifrenewed").val("0");
  229. }
  230. if($("#autoCorrectionYes").attr("checked")) {
  231. $("#autoCorrection").val("1");
  232. } else {
  233. $("#autoCorrection").val("0");
  234. }
  235. if($("#ifpaymentYes").attr("checked")) {
  236. $("#ifpayment").val("1");
  237. } else {
  238. $("#ifpayment").val("0");
  239. }
  240. if($("#trialPeriod").val() == 0) {
  241. if($("#positionStatus").val() == 1) {
  242. layer.alert("试用期限为【无】时,在职状态不能为【已入职】,请确认。");
  243. return ;
  244. }
  245. }
  246. $("#btnsub").click();
  247. }
  248. function callback(data){
  249. top.tip(data.msg)
  250. if(data.success) {
  251. window.location.href="personnelBaseArchivesManageController.do?goUpdatePersonnel&id=${personnelInfo.userid}";
  252. }
  253. }
  254. function dataReload() {
  255. $.messager.confirm("确认", "确定要重置当前内容?所有内容将会恢复到编辑之前。", function (r) {
  256. if (r) {
  257. window.location.href="personnelBaseArchivesManageController.do?goUpdatePersonnel&id=${personnelInfo.userid}";
  258. }
  259. });
  260. }
  261. </script>
  262. </head>
  263. <body>
  264. <div class="easyui-layout" fit="true">
  265. <div region="center" style="padding:0px;border:0px">
  266. <t:formvalid formid="formobj" dialog="false" usePlugin="password" layout="table" tipSweep="true" action="personnelBaseArchivesManageController.do?savePersonnelData" tiptype="1" callback="callback">
  267. <input id="id" name="id" type="hidden" value="${personnelInfo.id}"/>
  268. <input id="userid" name="userid" type="hidden" value="${personnelInfo.userid}"/>
  269. <input id="ifremind" name="ifremind" type="hidden" value="${personnelInfo.ifremind}"/>
  270. <input id="ifrenewed" name="ifrenewed" type="hidden" value="${personnelInfo.ifrenewed}"/>
  271. <input id="autoCorrection" name="autoCorrection" type="hidden" value="${personnelInfo.autoCorrection}"/>
  272. <input id="ifpayment" name="ifpayment" type="hidden" value="${personnelInfo.ifpayment}"/>
  273. <table cellpadding="0" cellspacing="1" class="formtable">
  274. <!--
  275. <tr>
  276. <td align="right" style="width:110px">
  277. <label class="Validform_label">
  278. 所属单位:
  279. </label>
  280. </td>
  281. <td class="value">
  282. <label>
  283. ${mainOrg}
  284. </label>
  285. </td>
  286. </tr>
  287. <tr>
  288. <td align="right">
  289. <label class="Validform_label">
  290. 兼职机构:
  291. </label>
  292. </td>
  293. <td class="value">
  294. <label>
  295. ${parttimeOrg}
  296. </label>
  297. </td>
  298. </tr>
  299. -->
  300. <tr>
  301. <td align="right" style="width:110px">
  302. <label class="Validform_label">
  303. <span color="red" class="requiredIcon">*</span>所属职务:
  304. </label>
  305. </td>
  306. <td class="value">
  307. <input id="belongDutiesid" name="belongDutiesid" type="hidden" datatype="*" value="${personnelInfo.belongDutiesid}">
  308. <input id="dutiesName" name="dutiesName" type="text" style="width: 300px" ignore="ignore" onclick="openDutiesSelect()" value='${dutiesName}' placeholder="请输入所属职务"/>
  309. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="dutiesSearch" onclick="openDutiesSelect()">选择</a>
  310. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="dutiesRedo" onclick="dutiesClean()">清空</a>
  311. <span class="Validform_checktip"></span>
  312. <label class="Validform_label" style="display: none;">所属职务</label>
  313. </td>
  314. </tr>
  315. <tr>
  316. <td align="right" style="width:110px">
  317. <label class="Validform_label">
  318. <span color="red" class="requiredIcon">*</span>职务等级:
  319. </label>
  320. </td>
  321. <td class="value">
  322. <select id="dutieslevel" name="dutieslevel" style="width: 150px">
  323. <option value="3">三级(默认)</option>
  324. <option value="2">二级</option>
  325. <option value="1">一级</option>
  326. </select>
  327. <span class="Validform_checktip"></span>
  328. <label class="Validform_label" style="display: none;">职务等级</label>
  329. </td>
  330. </tr>
  331. <%--
  332. <tr>
  333. <td align="right">
  334. <label class="Validform_label">
  335. 所属岗位:
  336. </label>
  337. </td>
  338. <td class="value">
  339. <input id="inPostid" name="inPostid" type="hidden" value='${personnelInfo.inPostid}'/>
  340. <input id="postName" name="postName" type="text" style="width: 300px" ignore="ignore" onclick="openPostSelect()" value='${postName}' placeholder="请输入所属岗位"/>
  341. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="postSearch" onclick="openPostSelect()">选择</a>
  342. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="postRedo" onclick="postClean()">清空</a>
  343. <span class="Validform_checktip"></span>
  344. <label class="Validform_label" style="display: none;">所属岗位</label>
  345. </td>
  346. </tr> --%>
  347. <tr>
  348. <td align="right">
  349. <label class="Validform_label">
  350. <span color="red" class="requiredIcon">*</span>入职日期:
  351. </label>
  352. </td>
  353. <td class="value">
  354. <div style="display:inline">
  355. <input id="contractStime" name="contractStime" type="text" style="width: 120px" class="Wdate"
  356. onClick="WdatePicker({dateFmt:'yyyy-MM-dd',maxDate:'#F{$dp.$D(\'contractEtime\',{d:-1})}'})" onblur="probationCount()" datatype="*" placeholder="YYYY-MM-DD" value='<fmt:formatDate value='${personnelInfo.contractStime}' type="date" pattern="yyyy-MM-dd"/>'/>
  357. 入职时填写<b>(注意:请谨慎修改,此项影响工资核算)</b>
  358. <span class="Validform_checktip"></span>
  359. <label class="Validform_label" style="display: none;">入职日期</label>
  360. </div>
  361. <%--<input type="checkbox" id='ifremindYes' name='ifremindYes'><span>是否到期提醒</span>
  362. <input type="checkbox" id='ifrenewedYes' name='ifrenewedYes' ><span>是否续签合同</span> --%>
  363. </td>
  364. </tr>
  365. <tr>
  366. <td align="right">
  367. <label class="Validform_label">
  368. <span color="red" class="requiredIcon">*</span>合同期至:
  369. </label>
  370. </td>
  371. <td class="value">
  372. <div style="display:inline">
  373. <input id="contractEtime" name="contractEtime" type="text" style="width: 120px" class="Wdate"
  374. onClick="WdatePicker({dateFmt:'yyyy-MM-dd',minDate:'#F{$dp.$D(\'contractStime\', {d:1})}'})" onblur="probationCount()" datatype="*" placeholder="YYYY-MM-DD" value='<fmt:formatDate value='${personnelInfo.contractEtime}' type="date" pattern="yyyy-MM-dd"/>'/>
  375. 续签合同时,修改此项
  376. <span class="Validform_checktip"></span>
  377. <label class="Validform_label" style="display: none;">合同结束时间</label>
  378. </div>
  379. </td>
  380. </tr>
  381. <tr>
  382. <!-- <td align="right"> -->
  383. <!-- <label class="Validform_label"> -->
  384. <!-- <span color="red" class="requiredIcon">*</span>合同有效期间: -->
  385. <!-- </label> -->
  386. <!-- </td> -->
  387. <!-- <td class="value"> -->
  388. <!-- <div style="display:inline"> -->
  389. <!-- <input id="contractStime" name="contractStime" type="text" style="width: 120px" class="Wdate" -->
  390. <%-- onClick="WdatePicker({dateFmt:'yyyy-MM-dd',maxDate:'#F{$dp.$D(\'contractEtime\',{d:-1})}'})" onblur="probationCount()" datatype="*" placeholder="YYYY-MM-DD" value='<fmt:formatDate value='${personnelInfo.contractStime}' type="date" pattern="yyyy-MM-dd"/>'/> --%>
  391. <!-- ~ -->
  392. <!-- <span class="Validform_checktip"></span> -->
  393. <!-- <label class="Validform_label" style="display: none;">合同开始时间</label> -->
  394. <!-- </div> -->
  395. <!-- <div style="display:inline"> -->
  396. <!-- <input id="contractEtime" name="contractEtime" type="text" style="width: 120px" class="Wdate" -->
  397. <%-- onClick="WdatePicker({dateFmt:'yyyy-MM-dd',minDate:'#F{$dp.$D(\'contractStime\', {d:1})}'})" onblur="probationCount()" datatype="*" placeholder="YYYY-MM-DD" value='<fmt:formatDate value='${personnelInfo.contractEtime}' type="date" pattern="yyyy-MM-dd"/>'/> --%>
  398. <!-- <span class="Validform_checktip"></span> -->
  399. <!-- <label class="Validform_label" style="display: none;">合同结束时间</label> -->
  400. <!-- </div> -->
  401. <input type="checkbox" id='ifremindYes' name='ifremindYes'><span>是否到期提醒</span>
  402. <input type="checkbox" id='ifrenewedYes' name='ifrenewedYes' ><span>是否续签合同</span>
  403. </td>
  404. </tr>
  405. <tr>
  406. <td align="right">
  407. <label class="Validform_label">
  408. <font color="#FF0000"></font>在职状态:
  409. </label>
  410. </td>
  411. <td class="value">
  412. <c:if test="${personnelInfo.positionStatus !=null && personnelInfo.positionStatus !=''}">
  413. <t:dictSelect readonly="readonly" field="positionStatus" id="positionStatus" type="list" typeGroupCode="jobStatus" defaultVal="${personnelInfo.positionStatus}" hasLabel="false" datatype="*" title="在职状态"></t:dictSelect>
  414. </c:if>
  415. <c:if test="${personnelInfo.positionStatus ==null || personnelInfo.positionStatus ==''}">
  416. <t:dictSelect field="positionStatus" id="positionStatus" type="list" typeGroupCode="jobStatus" hasLabel="false" datatype="*" title="在职状态"></t:dictSelect>
  417. </c:if>
  418. <span class="Validform_checktip"></span>
  419. <label class="Validform_label" style="display: none;">在职状态</label>
  420. </td>
  421. </tr>
  422. <tr>
  423. <td align="right">
  424. <label class="Validform_label">
  425. <span color="red" class="requiredIcon">*</span>员工类型:
  426. </label>
  427. </td>
  428. <td class="value">
  429. <t:dictSelect field="userType" id="userType" type="list" typeGroupCode="staffType" defaultVal="${personnelInfo.userType}" hasLabel="false" datatype="*" title="员工类型"></t:dictSelect>
  430. <span class="Validform_checktip"></span>
  431. <label class="Validform_label" style="display: none;">员工类型</label>
  432. </td>
  433. </tr>
  434. <tr>
  435. <td align="right">
  436. <label class="Validform_label">
  437. <span color="red" class="requiredIcon">*</span>是否自动转正:
  438. </label>
  439. </td>
  440. <td class="value">
  441. <input type="checkbox" id='autoCorrectionYes' name='autoCorrectionYes' onClick="autoCorrectionYesOnClick()"><span>是</span>
  442. <input type="checkbox" id='autoCorrectionNo' name='autoCorrectionNo' onClick="autoCorrectionNoOnClick()"><span>否</span>
  443. </td>
  444. </tr>
  445. <tr>
  446. <td align="right">
  447. <label class="Validform_label">
  448. <span color="red" class="requiredIcon">*</span>试用期限:
  449. </label>
  450. </td>
  451. <td class="value">
  452. <t:dictSelect field="trialPeriod" id="trialPeriod" type="list" typeGroupCode="shiyongqi" datatype="*" defaultVal="${personnelInfo.trialPeriod}" hasLabel="false" title="试用期限"></t:dictSelect>
  453. <span class="Validform_checktip"></span>
  454. <label class="Validform_label" style="display: none;">试用期限</label>
  455. </td>
  456. </tr>
  457. <tr>
  458. <td align="right">
  459. <label class="Validform_label">
  460. <span color="red" class="requiredIcon">*</span>是否为缴金人员:
  461. </label>
  462. </td>
  463. <td class="value">
  464. <input type="checkbox" id='ifpaymentYes' name='ifpaymentYes' onClick="ifpaymentYesOnClick()"><span>是</span>
  465. <input type="checkbox" id='ifpaymentNo' name='ifpaymentNo' onClick="ifpaymentNoOnClick()"><span>否</span>
  466. </td>
  467. </tr>
  468. <%--
  469. <tr>
  470. <td align="right">
  471. <label class="Validform_label">
  472. <span color="red" class="requiredIcon">*</span>管理类型:
  473. </label>
  474. </td>
  475. <td class="value">
  476. <t:dictSelect field="managerType" id="managerType" type="list" typeGroupCode="manageType" datatype="*" defaultVal="${personnelInfo.managerType}" hasLabel="false" title="管理类型"></t:dictSelect>
  477. <span class="Validform_checktip"></span>
  478. <label class="Validform_label" style="display: none;">管理类型</label>
  479. </td>
  480. </tr>
  481. --%>
  482. <tr>
  483. <td align="right">
  484. <label class="Validform_label">
  485. <font color="#FF0000"></font>离职日期:
  486. </label>
  487. </td>
  488. <td class="value">
  489. <div style="display:inline">
  490. <input id="leavedate" name="leavedate" type="text" style="width: 120px" class="Wdate"
  491. onClick="WdatePicker({dateFmt:'yyyy-MM-dd',maxDate:'#F{$dp.$D(\'leavedate\',{d:-1})}'})" placeholder="YYYY-MM-DD" value='<fmt:formatDate value='${personnelInfo.leaveDate}' type="date" pattern="yyyy-MM-dd"/>'/>
  492. 离职登记时填写
  493. <span class="Validform_checktip"></span>
  494. <label class="Validform_label" style="display: none;">离职日期</label>
  495. </div>
  496. <%--<input type="checkbox" id='ifremindYes' name='ifremindYes'><span>是否到期提醒</span>
  497. <input type="checkbox" id='ifrenewedYes' name='ifrenewedYes' ><span>是否续签合同</span> --%>
  498. </td>
  499. </tr>
  500. <tr>
  501. <td height="50px" align="center" colspan="4" >
  502. <a href="#" class="easyui-linkbutton l-btn" iconcls="icon-confirm" onclick="btn_ok()">提交人事信息</a>
  503. <a style="margin-left:6px;" href="#" class="easyui-linkbutton l-btn" plain="true" iconcls="icon-reload" onclick="reruzhi()">重新入职</a>
  504. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="doLeave" onclick="doLeave()">离职登记</a>
  505. <div style="display:none"><input type="submit" id ="btnsub" value=""/></div>
  506. </td>
  507. </tr>
  508. </table>
  509. </t:formvalid>
  510. </div>
  511. </div>
  512. </body>
  513. <script src = "webpage/cn/com/lzt/personnelbasearchivesmanage/personnelBaseArchivesManage.js"></script>
  514. </html>