PublicAffairs/gather-app/src/main/java/com/ruoyi/business/controller/BusinessTripApprovalControl...

241 lines
10 KiB
Java
Raw Normal View History

2025-05-29 17:51:21 +08:00
package com.ruoyi.business.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ruoyi.common.core.controller.BaseController;
2025-06-06 14:56:15 +08:00
import com.ruoyi.common.core.domain.AddTreeSelect;
2025-05-29 17:51:21 +08:00
import com.ruoyi.common.core.domain.AjaxResult;
2025-06-06 10:50:12 +08:00
import com.ruoyi.common.core.domain.TreeSelect;
import com.ruoyi.common.core.domain.entity.SysDept;
2025-05-29 17:51:21 +08:00
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.page.TableDataInfo;
2025-06-07 14:37:57 +08:00
import com.ruoyi.common.core.redis.RedisCache;
import com.ruoyi.common.utils.spring.SpringUtils;
2025-06-07 16:43:52 +08:00
import com.ruoyi.database.domain.*;
import com.ruoyi.database.domain.dto.ApprovaltDto;
2025-06-07 14:37:57 +08:00
import com.ruoyi.database.service.ApprovalProcessService;
2025-06-06 14:56:15 +08:00
import com.ruoyi.database.service.BaseAddressInfoService;
2025-05-29 17:51:21 +08:00
import com.ruoyi.database.service.BusinessTripApprovalService;
2025-06-07 16:43:52 +08:00
import com.ruoyi.database.service.gwglLogService;
2025-06-06 10:50:12 +08:00
import com.ruoyi.system.service.ISysDeptService;
import com.ruoyi.system.service.ISysUserService;
2025-05-29 17:51:21 +08:00
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
2025-06-06 16:13:23 +08:00
import org.springframework.web.bind.annotation.*;
2025-05-29 17:51:21 +08:00
2025-06-07 14:37:57 +08:00
import java.text.SimpleDateFormat;
2025-06-07 16:43:52 +08:00
import java.time.LocalDateTime;
2025-06-06 10:50:12 +08:00
import java.util.*;
2025-06-06 14:56:15 +08:00
import java.util.stream.Collectors;
2025-05-29 17:51:21 +08:00
/**
* @Description BusinessTripApprovalController
* @Author lijingtong
* @Date 2025-05-29
*/
@RestController
@RequestMapping("/BusinessTripApproval")
@RequiredArgsConstructor
@Api(tags = "出差审批单")
public class BusinessTripApprovalController extends BaseController {
2025-06-06 10:50:12 +08:00
2025-05-29 17:51:21 +08:00
private final BusinessTripApprovalService businessTripApprovalService;
2025-06-06 10:50:12 +08:00
private final ISysUserService sysUserService;
private final ISysDeptService sysDeptService;
2025-06-06 14:56:15 +08:00
private final BaseAddressInfoService baseAddressInfoService;
2025-06-07 14:37:57 +08:00
private final ApprovalProcessService approvalsProcessService;
2025-06-07 16:43:52 +08:00
private final gwglLogService gwglLogService;
2025-06-06 10:50:12 +08:00
2025-05-29 17:51:21 +08:00
2025-06-06 15:35:31 +08:00
@PostMapping("/list")
2025-06-06 10:50:12 +08:00
@ApiOperation("查询出差申请")
2025-06-06 16:37:13 +08:00
public TableDataInfo list(BusinessTripApproval businessTripApproval) {
2025-05-29 17:51:21 +08:00
startPage();
2025-06-06 10:50:12 +08:00
QueryWrapper<BusinessTripApproval> queryWrapper = new QueryWrapper<>(businessTripApproval);
queryWrapper.orderByDesc("create_time");
List<BusinessTripApproval> list = businessTripApprovalService.list(queryWrapper);
long size = businessTripApprovalService.count(queryWrapper);
2025-06-06 14:56:15 +08:00
return getDataTableEnhance(list, size);
2025-05-29 17:51:21 +08:00
}
2025-06-06 10:50:12 +08:00
2025-06-06 15:35:31 +08:00
@PostMapping("/add")
2025-06-06 10:50:12 +08:00
@ApiOperation("新增出差申请")
2025-06-06 16:13:23 +08:00
public AjaxResult add(@RequestBody BusinessTripApproval dto) {
2025-05-29 17:51:21 +08:00
SysUser user = getLoginUser().getUser();
2025-06-06 14:56:15 +08:00
if (dto.getHasOffcialCar() != null && dto.getHasOffcialCar() == 1) {
if (dto.getCarModel() == null) {
2025-06-06 10:50:12 +08:00
throw new RuntimeException("请选择使用车型");
2025-05-29 17:51:21 +08:00
}
2025-06-06 14:56:15 +08:00
if (dto.getUseCarType() == null) {
2025-06-06 10:50:12 +08:00
throw new RuntimeException("请选择用车方式");
}
2025-06-06 14:56:15 +08:00
if (dto.getSeats() == null) {
2025-06-06 10:50:12 +08:00
throw new RuntimeException("请输入座位数");
2025-05-29 17:51:21 +08:00
}
}
2025-06-06 14:56:15 +08:00
if (dto.getStartDate() == null || dto.getEndDate() == null) {
2025-06-06 10:50:12 +08:00
throw new RuntimeException("请选择出差时间范围");
}
2025-06-06 14:56:15 +08:00
if (dto.getDestinationId() == null) {
2025-06-06 10:50:12 +08:00
throw new RuntimeException("请选择出差目的地");
}
dto.setUserName(user.getNickName());
dto.setUserId(user.getUserId());
dto.setDepartment(user.getDept().getDeptName());
List<Long> togUserIdList = dto.getTogUserIdList();
StringBuilder ids = new StringBuilder();
2025-06-06 16:40:42 +08:00
if (togUserIdList != null && !togUserIdList.isEmpty()) {
for (Long aLong : togUserIdList) {
if (ids.length() > 0) {
ids.append(",");
}
ids.append(aLong);
2025-06-06 10:50:12 +08:00
}
2025-06-06 16:40:42 +08:00
dto.setTogUserIds(ids.toString());
2025-05-29 17:51:21 +08:00
}
2025-06-07 14:37:57 +08:00
String s = OrderNumberGenerator();
dto.setApplyNo(s);
2025-06-07 16:23:05 +08:00
UUID uuid = UUID.randomUUID();
String uuids = uuid.toString();
2025-06-08 14:37:41 +08:00
2025-06-07 16:23:05 +08:00
dto.setUuid(uuids);
2025-06-07 14:37:57 +08:00
ApprovalProcess approvalProcess = new ApprovalProcess();
approvalProcess.setApprovalNo(s);
2025-06-08 13:14:21 +08:00
approvalProcess.setProcessTitle("出差呈请");
2025-06-07 14:37:57 +08:00
approvalProcess.setSubmitterName(user.getNickName());
approvalProcess.setSubmitterId(user.getUserId());
approvalProcess.setSubmitTime(new Date().getTime());
2025-06-08 13:14:21 +08:00
approvalProcess.setMatterType(2);
2025-06-07 14:37:57 +08:00
approvalProcess.setApprovalStatus(0);
approvalProcess.setReadStatus(0);
2025-06-08 14:05:42 +08:00
approvalProcess.setBusinessTripDestination(dto.getDestinationIdCn());
2025-06-07 14:37:57 +08:00
approvalProcess.setStartTime(approvalProcess.getStartTime());
approvalProcess.setCreateTime(new Date().getTime());
2025-06-07 16:23:05 +08:00
approvalProcess.setUuid(uuids);
2025-06-07 14:37:57 +08:00
approvalsProcessService.save(approvalProcess);
2025-06-06 10:50:12 +08:00
return toAjax(businessTripApprovalService.save(dto));
2025-05-29 17:51:21 +08:00
}
2025-06-06 10:50:12 +08:00
@GetMapping("/userList")
@ApiOperation("查询用户人员列表")
public AjaxResult applyList() {
List<SysUser> sysUsers = sysUserService.selectList();
List<SysDept> sysDepts = sysDeptService.selectDeptList(new SysDept());
2025-06-08 15:38:27 +08:00
sysDepts = sysDepts.stream()
.filter(dept -> dept.getDeptId() != 131000) // 过滤掉id为131000的部门
.collect(Collectors.toList());
2025-06-06 10:50:12 +08:00
List<SysDept> depts = sysDeptService.buildDeptTree(sysDepts);
Map<Long, List<SysUser>> deptUsersMap = new HashMap<>();
for (SysUser user : sysUsers) {
deptUsersMap.computeIfAbsent(user.getDeptId(), k -> new ArrayList<>()).add(user);
2025-05-29 17:51:21 +08:00
}
2025-06-06 10:50:12 +08:00
return AjaxResult.success(buildTree(depts, deptUsersMap));
2025-05-29 17:51:21 +08:00
}
2025-06-06 10:50:12 +08:00
public List<TreeSelect> buildTree(List<SysDept> depts, Map<Long, List<SysUser>> deptUsersMap) {
List<TreeSelect> treeList = new ArrayList<>();
for (SysDept dept : depts) {
TreeSelect treeSelect = new TreeSelect();
treeSelect.setId(dept.getDeptId());
treeSelect.setLabel(dept.getDeptName());
// 分配用户到部门
List<SysUser> users = deptUsersMap.getOrDefault(dept.getDeptId(), Collections.emptyList());
// 这里可以根据需要处理用户信息,比如只存储用户名或创建包含用户详细信息的子对象
// 这里简单示例,只存储用户名列表
List<TreeSelect> children = new ArrayList<>();
if (users != null) {
for (SysUser sysUser : users) {
TreeSelect treeSelect1 = new TreeSelect();
treeSelect1.setLabel(sysUser.getNickName());
treeSelect1.setId(sysUser.getUserId());
treeSelect1.setDictId(dept.getDeptId());
treeSelect1.setDictName(dept.getDeptName());
children.add(treeSelect1);
}
}
// 递归处理子部门
children.addAll(buildTree(dept.getChildren(), deptUsersMap));
if (!children.isEmpty()) {
treeSelect.setChildren(children); // 注意这里我们重置了children因为前面我们错误地将它设置为了用户名字符串列表
}
treeList.add(treeSelect);
2025-05-29 17:51:21 +08:00
}
2025-06-06 10:50:12 +08:00
return treeList;
2025-05-29 17:51:21 +08:00
}
2025-06-06 14:56:15 +08:00
@GetMapping("/addressList")
@ApiOperation("查询地址信息列表")
public AjaxResult addressList() {
List<BaseAddressInfo> allAddresses = baseAddressInfoService.list();
Map<Long, List<BaseAddressInfo>> addressMap = allAddresses.stream()
.collect(Collectors.groupingBy(BaseAddressInfo::getTopId));
List<AddTreeSelect> tree = buildTree(addressMap, 0L);
return AjaxResult.success(tree);
}
2025-06-06 10:50:12 +08:00
2025-06-06 14:56:15 +08:00
private List<AddTreeSelect> buildTree(
Map<Long, List<BaseAddressInfo>> addressMap,
Long parentId
) {
List<BaseAddressInfo> children = addressMap.get(parentId);
if (children == null) return Collections.emptyList();
return children.stream()
.map(info -> {
AddTreeSelect node = new AddTreeSelect();
node.setId(info.getId());
node.setLabel(info.getAddName());
node.setValue(info.getId().toString());
node.setChildren(buildTree(addressMap, info.getId()));
return node;
})
.collect(Collectors.toList());
}
2025-06-07 14:37:57 +08:00
private static SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
private static final String DATA_KEY = "DDATAKEY:";
public static String OrderNumberGenerator() {
String format = sdf.format(new Date());
RedisCache bean = SpringUtils.getBean(RedisCache.class);
bean.setCacheObject(DATA_KEY + format, bean.getCacheObject(DATA_KEY + format) == null ? 1 : (Integer) (bean.getCacheObject(DATA_KEY + format)) + 1);
return format + String.format("%04d", (Integer) (bean.getCacheObject(DATA_KEY + format)));
}
2025-06-06 10:50:12 +08:00
2025-06-07 16:43:52 +08:00
@ApiOperation("审批出差申请")
@PostMapping("/approval")
public AjaxResult approval(ApprovaltDto dto) {
SysUser user = getLoginUser().getUser();
Long id = dto.getId();
Integer state = dto.getState();
BusinessTripApproval businessTripApproval = businessTripApprovalService.getById(id);
businessTripApproval.setState(state);
boolean result = businessTripApprovalService.updateById(businessTripApproval);
gwglLog gwglLog = new gwglLog();
gwglLog.setApplyNo(businessTripApproval.getApplyNo());
gwglLog.setDeptName(businessTripApproval.getDepartment());
gwglLog.setUserId(businessTripApproval.getUserId());
gwglLog.setUserName(businessTripApproval.getUserName());
// gwglLog.setCreateTime(businessTripApproval.getCreateTime());
gwglLog.setReason(businessTripApproval.getReason());
gwglLog.setType(1);
gwglLog.setApplyNo(businessTripApproval.getApplyNo());
gwglLog.setChecker(user.getNickName());
gwglLog.setCheckTime(LocalDateTime.now());
gwglLog.setCheckState(state);
boolean result1 = gwglLogService.save(gwglLog);
if (!result || !result1) {
return AjaxResult.error("审批出差申请失败");
}
return AjaxResult.success("审批出差申请成功");
}
2025-05-29 17:51:21 +08:00
}