考勤修改 审核流程修改
This commit is contained in:
parent
e969b1ccc8
commit
368fb1f49b
|
|
@ -163,7 +163,12 @@ public class AttendanceDetailsServiceImpl implements AttendanceDetailsService {
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
return attendanceDetailsDao.selectAttUpdateList(bean);
|
List<AttDataDetailsBean> list = attendanceDetailsDao.selectAttUpdateList(bean);
|
||||||
|
for (AttDataDetailsBean vo : list) {
|
||||||
|
List<AttDataDetailsBean.FilesVo> filesVoList = fileUploadService.getFiles(vo);
|
||||||
|
vo.setFilesVoList(filesVoList);
|
||||||
|
}
|
||||||
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,7 @@ public class EvectionController extends BaseController {
|
||||||
@Log(title = "流程管理->出差报备->修改出差报备", businessType = BusinessType.UPDATE)
|
@Log(title = "流程管理->出差报备->修改出差报备", businessType = BusinessType.UPDATE)
|
||||||
public AjaxResult edit(@Validated @RequestBody EvectionBean o) {
|
public AjaxResult edit(@Validated @RequestBody EvectionBean o) {
|
||||||
try{
|
try{
|
||||||
AjaxResult result = isCheck(o.getId() + "",1);
|
AjaxResult result = isCheck(o.getUuid() + "",2);
|
||||||
if(result!=null){
|
if(result!=null){
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue