|
|
|
@ -10,6 +10,7 @@ import com.hyp.system.domain.RewFileRelation;
|
|
|
|
|
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.FileRelationVO;
|
|
|
|
|
import com.hyp.system.service.ISysDictDataService;
|
|
|
|
|
import com.hyp.system.service.RewApplyInfoListService;
|
|
|
|
|
import com.hyp.system.service.RewFileRelationService;
|
|
|
|
@ -100,10 +101,12 @@ public class ApplyInfoListManager {
|
|
|
|
|
*/
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public boolean submit(ApplyInfoListSaveDTO applyInfoListSaveDTO){
|
|
|
|
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
|
|
|
RewApplyInfoList applyInfoList = applyInfoListService.getById(applyInfoListSaveDTO.getApplyId());
|
|
|
|
|
if(Objects.nonNull(applyInfoList)){
|
|
|
|
|
applyInfoList.setApplyStatus(applyInfoListSaveDTO.getApplyStatus());
|
|
|
|
|
applyInfoList.setAppTime(new Date());
|
|
|
|
|
applyInfoList.setCreateBy(loginUser.getUsername());
|
|
|
|
|
applyInfoList.setIsReward(applyInfoListSaveDTO.getIsReward());
|
|
|
|
|
}
|
|
|
|
|
return applyInfoListService.saveOrUpdate(applyInfoList);
|
|
|
|
@ -125,6 +128,26 @@ public class ApplyInfoListManager {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 查询详细
|
|
|
|
|
* @param applyId
|
|
|
|
|
* @return com.hyp.system.domain.vo.ApplyInfoListVO
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public ApplyInfoListVO detail(String applyId){
|
|
|
|
|
RewApplyInfoList applyInfoList = applyInfoListService.getById(applyId);
|
|
|
|
|
ApplyInfoListVO applyInfoListVO = Convert.convert(ApplyInfoListVO.class, applyInfoList);
|
|
|
|
|
List<RewFileRelation> list = relationService.lambdaQuery().eq(RewFileRelation::getApplyId, applyId).list();
|
|
|
|
|
List<FileRelationVO> fileRelationVOList = Convert.toList(FileRelationVO.class, list);
|
|
|
|
|
if(CollUtil.isNotEmpty(fileRelationVOList)){
|
|
|
|
|
applyInfoListVO.setFileRelationVOList(fileRelationVOList);
|
|
|
|
|
}
|
|
|
|
|
return applyInfoListVO;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|