master
20918 12 months ago
parent 9cc3138d73
commit f66becef25

@ -153,15 +153,13 @@ public class TdLeaveController extends BaseController
*/ */
@RequiresPermissions("system:leave:print") @RequiresPermissions("system:leave:print")
@Log(title = "人员离职", businessType = BusinessType.PRINT) @Log(title = "人员离职", businessType = BusinessType.PRINT)
@GetMapping("/print/{userId}") @GetMapping("/print/{Id}/{userId}")
public String paint(@PathVariable("userId") Long userId, ModelMap mmap) public String paint(@PathVariable("Id") Long Id,@PathVariable("userId") Long userId, ModelMap mmap)
{ {
TdLeave leaveuser = tdLeaveService.selectTdLeaveById(userId); TdLeave leaveuser = tdLeaveService.selectTdLeaveById(Id);
mmap.put("leaveuser", leaveuser); mmap.put("leaveuser", leaveuser);
mmap.put("user",userService.selectUserById(userId)); mmap.put("user",userService.selectUserById(userId));
mmap.put("posts", postService.selectPostsByUserIds(userId)); mmap.put("posts", postService.selectPostsByUserIds(userId));
SysUser sysUser= getSysUser();
mmap.put("sysUser",sysUser);
return prefix + "/leaveprint"; return prefix + "/leaveprint";
} }
} }

Loading…
Cancel
Save