|
|
|
@ -612,15 +612,15 @@
|
|
|
|
|
<td colspan=6 height=38 class=x26 width=666 style='height:28.5pt;'>人员离职登记表</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr height=37 style='mso-height-source:userset;height:28pt' id='r1'>
|
|
|
|
|
<td colspan=6 height=36 class=x27 style='border-bottom:1px solid windowtext;height:27.25pt;' id="leavedate">[[${leaveuser.leavedate}]]</td>
|
|
|
|
|
<td colspan=6 height=36 class=x27 style='border-bottom:1px solid windowtext;height:27.25pt;'>申请日期:</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr height=37 style='mso-height-source:userset;height:28pt' id='r2'>
|
|
|
|
|
<td height=35 class=x25 style='height:26.5pt;'>姓名</td>
|
|
|
|
|
<td class=x25>[[${leaveuser.username}]]</td>
|
|
|
|
|
<td class=x25>[[${leaveuser.userName}]]</td>
|
|
|
|
|
<td class=x25>单位</td>
|
|
|
|
|
<td class=x25>[[${leaveuser.depart}]]</td>
|
|
|
|
|
<td class=x25>入职日期</td>
|
|
|
|
|
<td class=x25 id="entryDate">[[${leaveuser.leavedate}]]</td>
|
|
|
|
|
<td class=x25 id="entryDate">[[${user.startdate}]]</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr height=75 style='mso-height-source:userset;height:56.5pt' id='r3'>
|
|
|
|
|
<td height=73 class=x21 style='height:55pt;'>离职原因</td>
|
|
|
|
@ -668,17 +668,16 @@
|
|
|
|
|
var day = String(date.getDate()).padStart(2, '0'); // 日可能是个位数,需要补零
|
|
|
|
|
return year + '-' + month + '-' + day
|
|
|
|
|
}
|
|
|
|
|
document.querySelector('#leavedate').innerHTML ='申请日期:' + conversionDate(new Date(document.querySelector('#leavedate').innerHTML))
|
|
|
|
|
document.querySelector('#entryDate').innerHTML =conversionDate(new Date(document.querySelector('#entryDate').innerHTML))
|
|
|
|
|
document.querySelector('.liquidate').innerHTML ='离职日期:' + conversionDate(new Date(document.querySelector('.liquidate').innerHTML))
|
|
|
|
|
//领导意见
|
|
|
|
|
var examinestateDatas = [[${@dict.getType(' sys_user_opinions')}]];
|
|
|
|
|
var examinestateDatas = [[${@dict.getType('sys_examine_state')}]];
|
|
|
|
|
var examinestateToFind = document.querySelector('#examinestate').innerHTML;
|
|
|
|
|
const foundObject = examinestateDatas.find(obj => obj.dictValue === examinestateToFind);
|
|
|
|
|
const result = foundObject ? foundObject.dictLabel : "";
|
|
|
|
|
document.querySelector('#examinestate').innerHTML = result
|
|
|
|
|
//工作交接
|
|
|
|
|
var workstateData = [[${@dict.getType('sys_examine_state')}]];
|
|
|
|
|
var workstateData = [[${@dict.getType('sys_user_work')}]];
|
|
|
|
|
var workstateToFind = document.querySelector('#workstate').innerHTML;
|
|
|
|
|
var workstateObject = workstateData.find(obj => obj.dictValue === workstateToFind);
|
|
|
|
|
var workstateresult = workstateObject ? workstateObject.dictLabel : "";
|
|
|
|
|