|
|
@ -3,23 +3,25 @@ package com.hyp.web.controller.manager;
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
import cn.hutool.core.convert.Convert;
|
|
|
|
import cn.hutool.core.convert.Convert;
|
|
|
|
import com.hyp.common.core.domain.model.LoginUser;
|
|
|
|
import com.hyp.common.core.domain.model.LoginUser;
|
|
|
|
import com.hyp.common.enums.ApplyTypeEnum;
|
|
|
|
|
|
|
|
import com.hyp.common.exception.ServiceException;
|
|
|
|
import com.hyp.common.exception.ServiceException;
|
|
|
|
import com.hyp.common.utils.SecurityUtils;
|
|
|
|
import com.hyp.common.utils.SecurityUtils;
|
|
|
|
import com.hyp.system.domain.RewApplyInfoList;
|
|
|
|
import com.hyp.system.domain.RewApplyInfoList;
|
|
|
|
|
|
|
|
import com.hyp.system.domain.RewFileRelation;
|
|
|
|
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
|
|
import com.hyp.system.domain.dto.ApplyInfoListDTO;
|
|
|
|
|
|
|
|
import com.hyp.system.domain.dto.ApplyInfoListSaveDTO;
|
|
|
|
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
|
|
import com.hyp.system.domain.vo.ApplyInfoListVO;
|
|
|
|
import com.hyp.system.service.ISysDictDataService;
|
|
|
|
import com.hyp.system.service.ISysDictDataService;
|
|
|
|
import com.hyp.system.service.RewApplyInfoListService;
|
|
|
|
import com.hyp.system.service.RewApplyInfoListService;
|
|
|
|
|
|
|
|
import com.hyp.system.service.RewFileRelationService;
|
|
|
|
import com.hyp.system.service.RewScoreInfoService;
|
|
|
|
import com.hyp.system.service.RewScoreInfoService;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* packageName com.hyp.web.controller.manager
|
|
|
|
* packageName com.hyp.web.controller.manager
|
|
|
@ -42,6 +44,9 @@ public class ApplyInfoListManager {
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
private ISysDictDataService dictDataService;
|
|
|
|
private ISysDictDataService dictDataService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
private RewFileRelationService relationService;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 奖项类型
|
|
|
|
* 奖项类型
|
|
|
@ -52,13 +57,10 @@ public class ApplyInfoListManager {
|
|
|
|
private static final String REW_APPLY_TYPE = "rew_apply_type";
|
|
|
|
private static final String REW_APPLY_TYPE = "rew_apply_type";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<ApplyInfoListVO> selectApplyInfoList(ApplyInfoListDTO applyInfoListDTO){
|
|
|
|
public List<ApplyInfoListVO> selectApplyInfoList(ApplyInfoListDTO applyInfoListDTO){
|
|
|
|
return applyInfoListService.selectApplyInfoList(applyInfoListDTO);
|
|
|
|
return applyInfoListService.selectApplyInfoList(applyInfoListDTO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 生成applyId
|
|
|
|
* 生成applyId
|
|
|
@ -90,6 +92,39 @@ public class ApplyInfoListManager {
|
|
|
|
applyInfoListService.save(applyInfoList);
|
|
|
|
applyInfoListService.save(applyInfoList);
|
|
|
|
return Convert.convert(ApplyInfoListVO.class, applyInfoList);
|
|
|
|
return Convert.convert(ApplyInfoListVO.class, applyInfoList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* 提交申请
|
|
|
|
|
|
|
|
* @param applyInfoListSaveDTO
|
|
|
|
|
|
|
|
* @return boolean
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
|
|
|
public boolean submit(ApplyInfoListSaveDTO applyInfoListSaveDTO){
|
|
|
|
|
|
|
|
RewApplyInfoList applyInfoList = applyInfoListService.getById(applyInfoListSaveDTO.getApplyId());
|
|
|
|
|
|
|
|
if(Objects.nonNull(applyInfoList)){
|
|
|
|
|
|
|
|
applyInfoList.setApplyStatus(applyInfoListSaveDTO.getApplyStatus());
|
|
|
|
|
|
|
|
applyInfoList.setAppTime(new Date());
|
|
|
|
|
|
|
|
applyInfoList.setIsReward(applyInfoListSaveDTO.getIsReward());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return applyInfoListService.saveOrUpdate(applyInfoList);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* 删除申请
|
|
|
|
|
|
|
|
* @param applyId
|
|
|
|
|
|
|
|
* @return boolean
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean deleteById(String applyId){
|
|
|
|
|
|
|
|
relationService.lambdaUpdate()
|
|
|
|
|
|
|
|
.eq(RewFileRelation::getApplyId, applyId)
|
|
|
|
|
|
|
|
.remove();
|
|
|
|
|
|
|
|
return applyInfoListService.removeById(applyId);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|