| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.domain.entity.EsModel; |
| | | import com.ruoyi.common.utils.MapUtils; |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.domain.*; |
| | | import com.ruoyi.mapper.ZfDoctorMapper; |
| | | import com.ruoyi.service.ZAuthorityService; |
| | | import com.ruoyi.service.ZInfoUserService; |
| | | import com.ruoyi.service.ZfDoctorService; |
| | | import com.ruoyi.service.*; |
| | | import com.ruoyi.service.ZfDoctorService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.elasticsearch.action.delete.DeleteRequest; |
| | | import org.elasticsearch.action.update.UpdateRequest; |
| | | import org.elasticsearch.client.RequestOptions; |
| | | import org.elasticsearch.client.RestHighLevelClient; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.io.IOException; |
| | | import java.time.LocalDateTime; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import static com.ruoyi.constant.MenuAuthority.*; |
| | |
| | | @Resource |
| | | ZfDoctorMapper zfDoctorMapper; |
| | | |
| | | @Resource |
| | | EsService esService; |
| | | |
| | | @Resource |
| | | private RestHighLevelClient restHighLevelClient; |
| | | |
| | | @Resource |
| | | ZfDoctorShareService zfDoctorShareService; |
| | | |
| | | |
| | | @Override |
| | | public AjaxResult selectDoctorList(ZfDoctor zfDoctor, Integer pageNum, Integer pageSize) { |
| | | // LambdaQueryWrapper<ZfDoctor> lqw = buildCondition(zfDoctor); |
| | |
| | | // return AjaxResult.success(data); |
| | | //要查自己家庭的 |
| | | ZInfoUser myself = zInfoUserService.getMyself(); |
| | | if (myself == null) { |
| | | // System.out.println("ssssss"); |
| | | return AjaxResult.success("您没加入到对应的家庭,请联系管理员"); |
| | | } |
| | | Long familyId = myself.getFamilyId(); |
| | | //也要查别人授权的 |
| | | List<ZAuthority> authority = zAuthorityService.getAuthority(); |
| | |
| | | //加上自己家庭的id |
| | | idList.add(familyId); |
| | | // String familyIds = listFamilyIds(); |
| | | // String secondFamilyAuthority = listSecondFamilyIds(); |
| | | // String secondFamilyAuthority = listSecondFamilyIds() |
| | | LambdaQueryWrapper<ZfDoctor> lqw = buildCondition(zfDoctor, idList); |
| | | |
| | | |
| | | Page<ZfDoctor> zfDoctorPage = new Page<>(pageNum, pageSize); |
| | | Page<ZfDoctor> pageResult = page(zfDoctorPage, lqw); |
| | |
| | | List<ZfDoctor> beanRecords = pageResult.getRecords();//得到查询出来的数据 |
| | | |
| | | List<ZfDoctor> dtoResult = markOwnData(familyId, beanRecords); |
| | | |
| | | HashMap<String, Object> data = MapUtils.getResult(pageResult, dtoResult); |
| | | return AjaxResult.success(data); |
| | | } |
| | |
| | | //加上自己家庭的id |
| | | idList.add(familyId); |
| | | |
| | | |
| | | LambdaQueryWrapper<ZfDoctor> lambdaQueryWrapper = buildCondition(zfDoctor, idList); |
| | | List<ZfDoctor> beanRecords = list(lambdaQueryWrapper); |
| | | log.info("从数据库中查到的为:{}", beanRecords); |
| | | return markOwnData(familyId, beanRecords); |
| | | } |
| | | |
| | | public List<ZfDoctor> markOwnData(Long familyId,List<ZfDoctor> beanRecords){ |
| | | public List<ZfDoctor> markOwnData(Long familyId, List<ZfDoctor> beanRecords) { |
| | | return beanRecords.stream().peek( |
| | | bean -> { |
| | | if (bean.getFamilyId() == familyId) { |
| | |
| | | bean.setOwnData(0); |
| | | } |
| | | } |
| | | ).sorted((a,b)-> b.getOwnData()-a.getOwnData()).collect(Collectors.toList()); |
| | | ).sorted((a, b) -> b.getOwnData() - a.getOwnData()).collect(Collectors.toList()); |
| | | } |
| | | |
| | | @Override |
| | |
| | | } |
| | | log.info("数据列表为:{}", dataList); |
| | | |
| | | for (ZfDoctor zfDoctor : dataList) { |
| | | zfDoctorService.addData(zfDoctor); |
| | | } |
| | | |
| | | for (ZfDoctor zfDoctor : dataList) { |
| | | if (zfDoctor.getSuitable().length() != 0 || zfDoctor.getType().length() != 0 || zfDoctor.getEffect().length() != 0 ) { |
| | | if(zfDoctor.getSymptom().length() == 0 || zfDoctor.getSymptom() == null){ |
| | | throw new RuntimeException("症状为空,导入数据失败"); |
| | | } |
| | | else { |
| | | zfDoctorService.addData(zfDoctor); |
| | | } |
| | | } |
| | | } |
| | | return AjaxResult.success("导入数据成功"); |
| | | |
| | | } |
| | |
| | | ZInfoUser myself = zInfoUserService.getMyself(); |
| | | Long familyId = myself.getFamilyId(); |
| | | |
| | | if(familyId == null){ |
| | | if (familyId == null) { |
| | | throw new RuntimeException("您还未加入任何家庭"); |
| | | } |
| | | |
| | |
| | | List<Long> familyIdList = authority.stream().filter(auth -> auth.getAuthority().toString().equals(DOCTOR_LIST_ADD)).map(ZAuthority::getFid).collect(Collectors.toList()); |
| | | familyIdList.add(familyId); |
| | | |
| | | if (zfDoctor.getFamilyId()!=null && !familyIdList.contains(zfDoctor.getFamilyId())) { |
| | | // List<ZfDoctorShare> authority1 = zfDoctorShareService.getAuthority(); |
| | | // List<Long> idList1 = authority1.stream().filter(auth -> auth.getShareContent().toString().equals(DOCTOR_LIST)).map(ZfDoctorShare::getShareId).collect(Collectors.toList()); |
| | | // zfDoctorService.addData(zfDoctor); |
| | | |
| | | if (zfDoctor.getFamilyId() != null && !familyIdList.contains(zfDoctor.getFamilyId())) { |
| | | throw new RuntimeException("你没有权限操作此家庭的数据"); |
| | | } |
| | | |
| | | |
| | | if(zfDoctor.getFamilyId() == null){ |
| | | if (zfDoctor.getFamilyId() == null) { |
| | | //默认添加自己家庭的数据 |
| | | zfDoctor.setFamilyId(familyId); |
| | | } |
| | |
| | | LambdaQueryWrapper<ZfDoctor> lqw = uniqueCondition(zfDoctor); |
| | | List<ZfDoctor> list = list(lqw); |
| | | |
| | | if(list.size()>0){ |
| | | if (list.size() > 0) { |
| | | throw new RuntimeException("请勿新增重复数据"); |
| | | } |
| | | |
| | | if (save(zfDoctor)) { |
| | | EsModel esModel = new EsModel(); |
| | | Integer inte = zfDoctor.getId().intValue(); |
| | | String uuid = UUID.randomUUID().toString().replace("-", ""); |
| | | esModel.setId(uuid); |
| | | esModel.setCtId(Long.valueOf(inte)); |
| | | esModel.setCtTableName("家庭小医生"); |
| | | esModel.setBy1(zfDoctor.getType()); |
| | | esModel.setBy2(zfDoctor.getSymptom()); |
| | | esModel.setBy3(zfDoctor.getEffect()); |
| | | esModel.setBy4(zfDoctor.getSuitable()); |
| | | esModel.setBy5("/family/zfDoctor"); |
| | | esModel.setBy6(zfDoctor.getCmedical()); |
| | | esModel.setBy7(zfDoctor.getWmedical()); |
| | | // esModel.setBy7(); |
| | | esModel.setRemark(zfDoctor.getRemark()); |
| | | esModel.setFid(familyId); |
| | | |
| | | |
| | | //这里存储查询详情的路径 |
| | | esService.insertTable(esModel); |
| | | return AjaxResult.success(); |
| | | } else { |
| | | return AjaxResult.error(); |
| | | } |
| | | } |
| | | |
| | | |
| | | @Resource |
| | | ZfLogService zfLogService; |
| | | |
| | | @Override |
| | | public AjaxResult updateData(ZfDoctor zfDoctor) { |
| | |
| | | List<Long> familyIdList = authority.stream().filter(auth -> auth.getAuthority().toString().equals(DOCTOR_LIST_UPDATE)).map(ZAuthority::getFid).collect(Collectors.toList()); |
| | | familyIdList.add(familyId); |
| | | |
| | | if (dataFamilyId!=null && !familyIdList.contains(dataFamilyId)) { |
| | | if (dataFamilyId != null && !familyIdList.contains(dataFamilyId)) { |
| | | throw new RuntimeException("你没有权限操作此家庭的数据"); |
| | | } |
| | | |
| | | if(updateById(zfDoctor)){ |
| | | //操作后加入日志 |
| | | ZfLog zfLog = new ZfLog(); |
| | | zfLog.setUpdateTime(LocalDateTime.now()); |
| | | zfLog.setModule("家庭小医生"); |
| | | zfLog.setUpdater(zInfoUserService.getMyself().getNickName()); |
| | | zfLogService.save(zfLog); |
| | | |
| | | if (updateById(zfDoctor)) { |
| | | //到数据库中查询对应的数据 |
| | | ZfDoctor dataById = getById(zfDoctor.getId()); |
| | | |
| | | //先到es中查询到对应那条数据在es的id |
| | | EsModel esResult = esService.findByCtId(dataById.getId().intValue(), "家庭小医生"); |
| | | |
| | | if (esResult == null) { |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | //操作es修改数据 |
| | | EsModel newModel = new EsModel(); |
| | | if (zfDoctor.getType() != null) { |
| | | newModel.setBy1(zfDoctor.getType()); |
| | | } else { |
| | | newModel.setBy1(dataById.getType()); |
| | | } |
| | | |
| | | if (zfDoctor.getSymptom() != null) { |
| | | newModel.setBy2(zfDoctor.getSymptom()); |
| | | } else { |
| | | newModel.setBy2(dataById.getSymptom()); |
| | | } |
| | | |
| | | if (zfDoctor.getEffect() != null) { |
| | | newModel.setBy3(zfDoctor.getEffect()); |
| | | } else { |
| | | newModel.setBy3(dataById.getEffect()); |
| | | } |
| | | |
| | | if (zfDoctor.getSuitable() != null) { |
| | | newModel.setBy4(zfDoctor.getSuitable()); |
| | | } else { |
| | | newModel.setBy4(dataById.getSuitable()); |
| | | } |
| | | |
| | | if (zfDoctor.getCmedical() != null) { |
| | | newModel.setBy6(zfDoctor.getCmedical()); |
| | | } else { |
| | | newModel.setBy6(dataById.getCmedical()); |
| | | } |
| | | |
| | | if (zfDoctor.getWmedical() != null) { |
| | | newModel.setBy7(zfDoctor.getWmedical()); |
| | | } else { |
| | | newModel.setBy7(dataById.getWmedical()); |
| | | } |
| | | |
| | | if (zfDoctor.getRemark() != null) { |
| | | newModel.setRemark(zfDoctor.getRemark()); |
| | | } else { |
| | | newModel.setRemark(dataById.getRemark()); |
| | | } |
| | | |
| | | |
| | | UpdateRequest updateRequest = new UpdateRequest("allsearchdata", esResult.getId()); |
| | | updateRequest.doc( |
| | | "by1", newModel.getBy1(), |
| | | "by2", newModel.getBy2(), |
| | | "by3", newModel.getBy3(), |
| | | "by4", newModel.getBy4(), |
| | | "by6", newModel.getBy6(), |
| | | "by7", newModel.getBy7(), |
| | | "remark", newModel.getRemark() |
| | | ); |
| | | |
| | | try { |
| | | restHighLevelClient.update(updateRequest, RequestOptions.DEFAULT); |
| | | } catch (IOException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | |
| | | return AjaxResult.success(); |
| | | }else { |
| | | } else { |
| | | return AjaxResult.error(); |
| | | } |
| | | } |
| | |
| | | familyIdList.add(familyId); |
| | | |
| | | for (ZfDoctor data : dataList) { |
| | | if (!familyIdList.contains(data.getFamilyId())){ |
| | | if (!familyIdList.contains(data.getFamilyId())) { |
| | | throw new RuntimeException("你没有权限操作此家庭的数据"); |
| | | } |
| | | } |
| | | List<ZfDoctor> zfDoctors = listByIds(Arrays.asList(ids)); |
| | | |
| | | if (zfDoctorService.removeByIds(Arrays.asList(ids))) { |
| | | |
| | | //删除es中的数据 |
| | | zfDoctors.stream().forEach(zfDoctor -> { |
| | | EsModel esModel = esService.findByCtId(zfDoctor.getId().intValue(), "家庭小医生"); |
| | | |
| | | if (esModel != null) { |
| | | DeleteRequest deleteRequest = new DeleteRequest("allsearchdata", esModel.getId()); |
| | | try { |
| | | restHighLevelClient.delete(deleteRequest, RequestOptions.DEFAULT); |
| | | } catch (IOException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | |
| | | } |
| | | }); |
| | | return AjaxResult.success(); |
| | | }else { |
| | | } else { |
| | | return AjaxResult.error(); |
| | | } |
| | | } |
| | |
| | | lqw.eq(StringUtils.isNotEmpty(zfDoctor.getEffect()), ZfDoctor::getEffect, zfDoctor.getEffect()); |
| | | lqw.eq(StringUtils.isNotEmpty(zfDoctor.getSuitable()), ZfDoctor::getSuitable, zfDoctor.getSuitable()); |
| | | lqw.eq(StringUtils.isNotEmpty(zfDoctor.getRemark()), ZfDoctor::getRemark, zfDoctor.getRemark()); |
| | | lqw.eq(zfDoctor.getFamilyId()!=null,ZfDoctor::getFamilyId,zfDoctor.getFamilyId()); |
| | | lqw.eq(zfDoctor.getFamilyId() != null, ZfDoctor::getFamilyId, zfDoctor.getFamilyId()); |
| | | return lqw; |
| | | } |
| | | |
| | | private LambdaQueryWrapper<ZfDoctor> buildCondition(ZfDoctor zfDoctor,List<Long> familyIdList) { |
| | | private LambdaQueryWrapper<ZfDoctor> buildCondition(ZfDoctor zfDoctor, List<Long> familyIdList) { |
| | | LambdaQueryWrapper<ZfDoctor> lqw = new LambdaQueryWrapper<>(); |
| | | lqw.in(ZfDoctor::getFamilyId,familyIdList); |
| | | lqw.in(ZfDoctor::getFamilyId, familyIdList); |
| | | lqw.orderByDesc(ZfDoctor::getCreateTime); |
| | | lqw.like(StringUtils.isNotEmpty(zfDoctor.getType()), ZfDoctor::getType, zfDoctor.getType()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getSymptom()), ZfDoctor::getSymptom, zfDoctor.getSymptom()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getDuration()), ZfDoctor::getDuration, zfDoctor.getDuration()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getEffect()), ZfDoctor::getEffect, zfDoctor.getEffect()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getSuitable()), ZfDoctor::getSuitable, zfDoctor.getSuitable()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getWmedical()),ZfDoctor::getWmedical,zfDoctor.getWmedical()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getCmedical()),ZfDoctor::getCmedical,zfDoctor.getCmedical()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getWmedical()), ZfDoctor::getWmedical, zfDoctor.getWmedical()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getCmedical()), ZfDoctor::getCmedical, zfDoctor.getCmedical()) |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getRemark()), ZfDoctor::getRemark, zfDoctor.getRemark()); |
| | | if (StringUtils.isNotEmpty(zfDoctor.getPrescription())){ |
| | | if (StringUtils.isNotEmpty(zfDoctor.getPrescription())) { |
| | | lqw.and(wrapper -> { |
| | | wrapper.like(StringUtils.isNotEmpty(zfDoctor.getPrescription()),ZfDoctor::getWmedical,zfDoctor.getPrescription()) |
| | | wrapper.like(StringUtils.isNotEmpty(zfDoctor.getPrescription()), ZfDoctor::getWmedical, zfDoctor.getPrescription()) |
| | | .or() |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getPrescription()),ZfDoctor::getCmedical,zfDoctor.getPrescription()); |
| | | .like(StringUtils.isNotEmpty(zfDoctor.getPrescription()), ZfDoctor::getCmedical, zfDoctor.getPrescription()); |
| | | }); |
| | | } |
| | | return lqw; |
| | | } |
| | | } |
| | | |
| | | // public LambdaQueryWrapper<ZfDoctor> buildCondition2(List<Long> ids) { |
| | | // LambdaQueryWrapper<ZfDoctor> lqw = new LambdaQueryWrapper<>(); |
| | | // lqw.eq(ZfDoctor::getId, ids); |
| | | // |
| | | // return lqw; |
| | | // } |
| | | // @Override |
| | | // public AjaxResult selectListById(List<Long> ids, Integer pageNum, Integer pageSize) { |
| | | // List<ZfDoctor> lqw2 = new ArrayList<>(); |
| | | // |
| | | // LambdaQueryWrapper<ZfDoctor> lqw = buildCondition2(ids); |
| | | // List<ZfDoctor> bb = list(lqw); |
| | | // System.out.println("15052222254"+bb); |
| | | // |
| | | // Page<ZfDoctor> zfDoctorPage = new Page<>(pageNum, pageSize); |
| | | // Page<ZfDoctor> pageResult = page(zfDoctorPage, lqw); |
| | | // List<ZfDoctor> beanRecords = pageResult.getRecords();//得到查询出来的数据 |
| | | // System.out.println(beanRecords); |
| | | // |
| | | // HashMap<String, Object> data = MapUtils.getResult(pageResult, beanRecords); |
| | | // |
| | | // |
| | | // return AjaxResult.success(data); |
| | | //// } |
| | | |
| | | // private List<Long> buildCondition1(){ |
| | | // List<ZfDoctorShare> authority1 = zfDoctorShareService.getAuthority(); |
| | | // List<Long> idList1 = authority1.stream().filter(auth -> auth.getShareContent().toString().equals(DOCTOR_LIST)).map(ZfDoctorShare::getShareId).collect(Collectors.toList()); |
| | | // return idList1; |
| | | // } |
| | | // private LambdaQueryWrapper<ZfDoctor> buildCondition2(ZfDoctor zfDoctor, List<Long> IdList) { |
| | | // LambdaQueryWrapper<ZfDoctorShare> lqw = new LambdaQueryWrapper<>(); |
| | | // lqw.in(ZfDoctorShare::getShareId, IdList); |
| | | // List<ZfDoctorShare> beanRecords = list(lqw); |
| | | // for (ZfDoctorShare shareContent : beanRecords){ |
| | | // zfDoctorService.getById(shareContent); |
| | | // } |
| | | // |
| | | // } |
| | | |
| | | |
| | | } |