Commit 5aa84d6b authored by hongguangwu's avatar hongguangwu

MVP1.7.17-离职待办-派单暂存

parent ce499548
......@@ -1325,7 +1325,8 @@ public class TEmployeeContractInfoServiceImpl extends ServiceImpl<TEmployeeContr
String leaveDate;
String leaveReason;
for (EmployeeContractVO vo : excelVOList) {
vo.setRowIndex(i++);
i++;
vo.setRowIndex(i);
baseSearchVO = paramMap.get(vo.getContractId());
leaveId = null;
if (baseSearchVO != null) {
......
......@@ -699,8 +699,9 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
Map<Integer, String> rowLeaveMap = new HashMap<>();
int i=0;
for (BaseSearchVO param : listParam) {
i++;
vo = new EmployeeLeaveVO();
vo.setRowIndex(i++);
vo.setRowIndex(i);
vo.setEmpName(param.getEmpName());
vo.setEmpIdcard(param.getEmpIdCard());
vo.setLeaveReason(param.getResultIdThree());
......
......@@ -633,8 +633,9 @@ public class TEmployeeProjectServiceImpl extends ServiceImpl<TEmployeeProjectMap
Map<Integer, String> rowLeaveMap = new HashMap<>();
int i=0;
for (BaseSearchVO param : listParam) {
i++;
vo = new EmployeeXProjectVO();
vo.setRowIndex(i++);
vo.setRowIndex(i);
vo.setEmpName(param.getEmpName());
vo.setEmpIdcard(param.getEmpIdCard());
vo.setDeptNo(param.getDeptNo());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment