|
|
|
@ -1,6 +1,9 @@
|
|
|
|
|
package com.ruoyi.web.controller.system;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
|
|
|
|
import com.ruoyi.system.service.ISysUserService;
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
@ -34,6 +37,7 @@ public class TdLeaveController extends BaseController
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdLeaveService tdLeaveService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:leave:view")
|
|
|
|
|
@GetMapping()
|
|
|
|
|
public String leave()
|
|
|
|
@ -74,6 +78,7 @@ public class TdLeaveController extends BaseController
|
|
|
|
|
@GetMapping("/add")
|
|
|
|
|
public String add()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return prefix + "/add";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -84,8 +89,9 @@ public class TdLeaveController extends BaseController
|
|
|
|
|
@Log(title = "人员离职", businessType = BusinessType.INSERT)
|
|
|
|
|
@PostMapping("/add")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult addSave(TdLeave tdLeave)
|
|
|
|
|
public AjaxResult addSave(TdLeave tdLeave,ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
mmap.put("addleave",getSysUser());
|
|
|
|
|
return toAjax(tdLeaveService.insertTdLeave(tdLeave));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -124,4 +130,16 @@ public class TdLeaveController extends BaseController
|
|
|
|
|
{
|
|
|
|
|
return toAjax(tdLeaveService.deleteTdLeaveByIds(ids));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 人员离职审核
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:leave:examine")
|
|
|
|
|
@Log(title = "人员离职", businessType = BusinessType.EXAMINE)
|
|
|
|
|
@GetMapping( "/examine/{id}")
|
|
|
|
|
public String examine(@PathVariable("id") Long id,ModelMap mmap){
|
|
|
|
|
TdLeave leaveuser = tdLeaveService.selectTdLeaveById(id);
|
|
|
|
|
mmap.put("leaveuser", leaveuser);
|
|
|
|
|
return prefix + "/leaveexamine";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|