|
|
|
@ -27,6 +27,7 @@ import com.logpm.supervise.entity.IndicatorsAnnexEntity;
|
|
|
|
|
import com.logpm.supervise.entity.IndicatorsEntity; |
|
|
|
|
import com.logpm.supervise.entity.PointsEntity; |
|
|
|
|
import com.logpm.supervise.mapper.ClassifyMapper; |
|
|
|
|
import com.logpm.supervise.mapper.IndicatorsAnnexMapper; |
|
|
|
|
import com.logpm.supervise.mapper.IndicatorsMapper; |
|
|
|
|
import com.logpm.supervise.service.IClassifyService; |
|
|
|
|
import com.logpm.supervise.service.IIndicatorsAnnexService; |
|
|
|
@ -66,6 +67,8 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
|
|
|
|
|
|
|
|
|
|
private final IIndicatorsAnnexService indicatorsAnnexService; |
|
|
|
|
|
|
|
|
|
private final IndicatorsAnnexMapper indicatorsAnnexMapper; |
|
|
|
|
|
|
|
|
|
private final IIndicatorsService iIndicatorsService; |
|
|
|
|
|
|
|
|
|
private final IndicatorsMapper indicatorsMapper; |
|
|
|
@ -189,22 +192,36 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
|
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
|
public R saveApiIndicators(IndicatorsDTO instanceofDTO) { |
|
|
|
|
|
|
|
|
|
//保存考核内容
|
|
|
|
|
IndicatorsEntity indicatorsEntity = Func.copy(instanceofDTO, IndicatorsEntity.class); |
|
|
|
|
indicatorsEntity.setIndicatorsStatus(1); |
|
|
|
|
iIndicatorsService.save(indicatorsEntity); |
|
|
|
|
|
|
|
|
|
if (Func.isNotEmpty(instanceofDTO.getResourceList())){ |
|
|
|
|
//存在附件进行保存
|
|
|
|
|
List<Map<String, Object>> resourceList = instanceofDTO.getResourceList(); |
|
|
|
|
for (Map<String, Object> map : resourceList) { |
|
|
|
|
IndicatorsAnnexEntity indicatorsAnnexEntity = Func.copy(map, IndicatorsAnnexEntity.class); |
|
|
|
|
indicatorsAnnexService.save(indicatorsAnnexEntity); |
|
|
|
|
} |
|
|
|
|
handleResource(resourceList,indicatorsEntity.getId()); |
|
|
|
|
} |
|
|
|
|
return R.status(true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Transactional |
|
|
|
|
private void handleResource(List<Map<String, Object>> resourceList, Long id) { |
|
|
|
|
for (Map<String, Object> map : resourceList) { |
|
|
|
|
IndicatorsAnnexEntity indicatorsAnnexEntity = Func.copy(map, IndicatorsAnnexEntity.class); |
|
|
|
|
indicatorsAnnexEntity.setIndicatorsId(id); |
|
|
|
|
indicatorsAnnexService.save(indicatorsAnnexEntity); |
|
|
|
|
} |
|
|
|
|
//保存考核内容
|
|
|
|
|
IndicatorsEntity indicatorsEntity = Func.copy(instanceofDTO, IndicatorsEntity.class); |
|
|
|
|
return R.status(iIndicatorsService.save(indicatorsEntity)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R selectMyApiIndicators(Map<String, Object> params, IPage<IndicatorsVO> page) { |
|
|
|
|
Long userId = AuthUtil.getUserId(); |
|
|
|
|
if (Func.isEmpty(userId)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
params.put("userId",userId); |
|
|
|
|
Page<IndicatorsVO> indicatorsVOPage = indicatorsMapper.selectMyApiIndicators(page,params); |
|
|
|
|
return R.data(indicatorsVOPage); |
|
|
|
|
} |
|
|
|
@ -223,12 +240,28 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
|
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(resourceMap.get(2))){ |
|
|
|
|
//存在附件资源
|
|
|
|
|
indicatorsVO.setPictures(resourceMap.get(2)); |
|
|
|
|
indicatorsVO.setFiles(resourceMap.get(2)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return R.data(indicatorsVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
|
public R updateApiIndicators(IndicatorsDTO instanceofDTO) { |
|
|
|
|
//查询对应的考核是否存在附件信息
|
|
|
|
|
List<IndicatorsAnnexEntity> annexEntityList = indicatorsAnnexService.list(Wrappers.<IndicatorsAnnexEntity>query().lambda().eq(IndicatorsAnnexEntity::getIndicatorsId, instanceofDTO.getId())); |
|
|
|
|
if (Func.isNotEmpty(annexEntityList)){ |
|
|
|
|
//进行附件文件信息删除
|
|
|
|
|
indicatorsAnnexMapper.deleteResourceByInstanceoId(instanceofDTO.getId()); |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(instanceofDTO.getResourceList())){ |
|
|
|
|
handleResource(instanceofDTO.getResourceList(), instanceofDTO.getId()); |
|
|
|
|
} |
|
|
|
|
IndicatorsEntity indicatorsEntity = Func.copy(instanceofDTO, IndicatorsEntity.class); |
|
|
|
|
return R.status(iIndicatorsService.updateById(indicatorsEntity)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<ClassifyApiVO> getClassifyList(Long pid) { |
|
|
|
|
return baseMapper.selectAllClassifyList(pid); |
|
|
|
|
} |
|
|
|
|