fix:评分列表接口重构

dev
wangxy 12 months ago
parent 6790427619
commit b80d83cd8f

@ -9,6 +9,7 @@ import com.hyp.common.exception.ServiceException;
import com.hyp.common.utils.SecurityUtils;
import com.hyp.system.domain.RewApplyInfoList;
import com.hyp.system.domain.RewFileRelation;
import com.hyp.system.domain.RewScoreInfo;
import com.hyp.system.domain.dto.ApplyInfoListDTO;
import com.hyp.system.domain.dto.ApplyInfoListSaveDTO;
import com.hyp.system.domain.vo.ApplyInfoListVO;
@ -74,7 +75,24 @@ public class ApplyInfoListManager {
public List<ApplyInfoListVO> selectScoreInfoList(ApplyInfoListDTO applyInfoListDTO){
return applyInfoListService.selectApplyInfoList(applyInfoListDTO);
List<ApplyInfoListVO> applyInfoListVOS = applyInfoListService.selectApplyInfoList(applyInfoListDTO);
applyInfoListVOS.forEach(applyInfoListVO -> {
if (!SysUser.isAdmin(SecurityUtils.getUserId())) {
Integer count = scoreInfoService.lambdaQuery()
.eq(RewScoreInfo::getApplyId, applyInfoListVO.getApplyId())
.eq(RewScoreInfo::getCreateId, SecurityUtils.getUserId()).count();
if (count > 0) {
applyInfoListVO.setScoreStatus(1);
}
} else if (SysUser.isAdmin(SecurityUtils.getUserId())) {
Integer count = scoreInfoService.lambdaQuery()
.eq(RewScoreInfo::getApplyId, applyInfoListVO.getApplyId()).count();
if (count > 0) {
applyInfoListVO.setScoreStatus(1);
}
}
});
return applyInfoListVOS;
}
/**

@ -58,7 +58,8 @@ public class ScoreInfoManager {
rewScoreInfo.setCreateTime(new Date());
rewScoreInfo.setCreateBy(loginUser.getUsername());
}
return scoreInfoService.saveOrUpdate(rewScoreInfo);
scoreInfoService.saveOrUpdate(rewScoreInfo);
return submit(rewScoreInfo.getApplyId());
}

@ -68,6 +68,10 @@ public class ApplyInfoListVO extends BaseEntity {
private Long createId;
private Integer scoreStatus = 0;
/**
*
*/

Loading…
Cancel
Save