|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|