|
|
@ -136,6 +136,10 @@ public class TdLeaveController extends BaseController
|
|
|
|
return toAjax(tdLeaveService.deleteTdLeaveByIds(ids));
|
|
|
|
return toAjax(tdLeaveService.deleteTdLeaveByIds(ids));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 审核保存
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/
|
|
|
|
@RequiresPermissions("system:leave:examine")
|
|
|
|
@RequiresPermissions("system:leave:examine")
|
|
|
|
@Log(title = "人员离职", businessType = BusinessType.EXAMINE)
|
|
|
|
@Log(title = "人员离职", businessType = BusinessType.EXAMINE)
|
|
|
|
@PostMapping("/examine")
|
|
|
|
@PostMapping("/examine")
|
|
|
@ -154,6 +158,7 @@ public class TdLeaveController extends BaseController
|
|
|
|
public String examine(@PathVariable("id") Long id,ModelMap mmap){
|
|
|
|
public String examine(@PathVariable("id") Long id,ModelMap mmap){
|
|
|
|
TdLeave leaveuser = tdLeaveService.selectTdLeaveById(id);
|
|
|
|
TdLeave leaveuser = tdLeaveService.selectTdLeaveById(id);
|
|
|
|
mmap.put("leaveuser", leaveuser);
|
|
|
|
mmap.put("leaveuser", leaveuser);
|
|
|
|
|
|
|
|
mmap.put("sysuser",getSysUser().getLoginName());
|
|
|
|
return prefix + "/leaveexamine";
|
|
|
|
return prefix + "/leaveexamine";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|