|
|
|
@ -77,27 +77,33 @@ public class CheckReportManager {
|
|
|
|
|
return checkTypeService.saveBatch(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<CheckTypeDTO> getCheckTypeDTO(String type) {
|
|
|
|
|
List<CheckTypeDTO> checkTypeDtoS = new ArrayList<>();
|
|
|
|
|
SysDictData sysDictData =new SysDictData();
|
|
|
|
|
sysDictData.setDictType(type);
|
|
|
|
|
List<SysDictData> list = dictDataService.selectDictDataList(sysDictData);
|
|
|
|
|
list.forEach(sysDictData1 -> {
|
|
|
|
|
public List<CheckTypeItemDTO> getCheckTypeDTO(String checkType,String typeName) {
|
|
|
|
|
List<CheckTypeItemDTO> checkTypeItemDTOList =new ArrayList<>();
|
|
|
|
|
checkTypeDtoS.add(CheckTypeDTO.builder()
|
|
|
|
|
.typeName(sysDictData1.getDictLabel())
|
|
|
|
|
.checkType(sysDictData1.getDictValue()).checkTypeItemDTOList(checkTypeItemDTOList).build());
|
|
|
|
|
SysDictData dictData = new SysDictData();
|
|
|
|
|
dictData.setDictType(sysDictData1.getDictValue());
|
|
|
|
|
dictData.setDictType(checkType);
|
|
|
|
|
List<SysDictData> dataList = dictDataService.selectDictDataList(dictData);
|
|
|
|
|
dataList.forEach(sysDictData2 -> checkTypeItemDTOList.add(CheckTypeItemDTO.builder().typeName(sysDictData1.getDictLabel())
|
|
|
|
|
.checkType(sysDictData1.getDictValue())
|
|
|
|
|
dataList.forEach(sysDictData2 -> checkTypeItemDTOList.add(CheckTypeItemDTO.builder()
|
|
|
|
|
.typeName(typeName)
|
|
|
|
|
.checkType(checkType)
|
|
|
|
|
.checkItems(sysDictData2.getDictLabel())
|
|
|
|
|
.itemsType(sysDictData2.getDictCode())
|
|
|
|
|
.typeContent(sysDictData2.getDictValue())
|
|
|
|
|
.score(sysDictData2.getCssClass())
|
|
|
|
|
.deductionCriteria(sysDictData2.getRemark())
|
|
|
|
|
.build()));
|
|
|
|
|
|
|
|
|
|
return checkTypeItemDTOList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<CheckTypeDTO> getCheckTypeDTOParent(String type) {
|
|
|
|
|
List<CheckTypeDTO> checkTypeDtoS = new ArrayList<>();
|
|
|
|
|
SysDictData sysDictData =new SysDictData();
|
|
|
|
|
sysDictData.setDictType(type);
|
|
|
|
|
List<SysDictData> list = dictDataService.selectDictDataList(sysDictData);
|
|
|
|
|
list.forEach(sysDictData1 -> {
|
|
|
|
|
checkTypeDtoS.add(CheckTypeDTO.builder()
|
|
|
|
|
.typeName(sysDictData1.getDictLabel())
|
|
|
|
|
.checkType(sysDictData1.getDictValue()).build());
|
|
|
|
|
});
|
|
|
|
|
return checkTypeDtoS;
|
|
|
|
|
}
|
|
|
|
|