From eb2ac2a40f92359739701c6f060607a474010de0 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期一, 09 十二月 2024 18:11:23 +0800 Subject: [PATCH] 单位管理 --- medicalWaste-system/src/main/java/com/sinata/system/service/impl/SysDepartmentServiceImpl.java | 428 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 428 insertions(+), 0 deletions(-) diff --git a/medicalWaste-system/src/main/java/com/sinata/system/service/impl/SysDepartmentServiceImpl.java b/medicalWaste-system/src/main/java/com/sinata/system/service/impl/SysDepartmentServiceImpl.java index 9ad50a5..a1a5eed 100644 --- a/medicalWaste-system/src/main/java/com/sinata/system/service/impl/SysDepartmentServiceImpl.java +++ b/medicalWaste-system/src/main/java/com/sinata/system/service/impl/SysDepartmentServiceImpl.java @@ -1,25 +1,37 @@ package com.sinata.system.service.impl; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.sinata.common.constant.CacheConstants; +import com.sinata.common.entity.PageDTO; import com.sinata.common.exception.ServiceException; import com.sinata.common.utils.BeanUtils; import com.sinata.common.utils.CollUtils; import com.sinata.common.utils.SecurityUtils; import com.sinata.common.utils.StringUtils; import com.sinata.system.domain.SysDepartment; +import com.sinata.system.domain.SysDepartmentInfo; import com.sinata.system.domain.SysUserDepartment; +import com.sinata.system.domain.dto.DisposalUnitDTO; +import com.sinata.system.domain.dto.MedicalInstitutionDTO; +import com.sinata.system.domain.dto.RegulatoryUnitDTO; import com.sinata.system.domain.dto.SysDepartmentDTO; +import com.sinata.system.domain.query.DepartmentQuery; +import com.sinata.system.domain.vo.DisposalUnitVO; +import com.sinata.system.domain.vo.MedicalInstitutionVO; +import com.sinata.system.domain.vo.RegulatoryUnitVO; import com.sinata.system.domain.vo.SysDepartmentVO; import com.sinata.system.enums.DepartmentEnum; import com.sinata.system.mapper.SysDepartmentMapper; +import com.sinata.system.service.SysDepartmentInfoService; import com.sinata.system.service.SysDepartmentService; import com.sinata.system.service.SysUserDepartmentService; import lombok.RequiredArgsConstructor; import org.jetbrains.annotations.NotNull; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import java.util.ArrayList; import java.util.Arrays; @@ -44,6 +56,7 @@ public class SysDepartmentServiceImpl extends ServiceImpl<SysDepartmentMapper, SysDepartment> implements SysDepartmentService { private final SysUserDepartmentService sysUserDepartmentService; private final RedisTemplate<Object, Object> redisTemplate; + private final SysDepartmentInfoService sysDepartmentInfoService; /** * 获取区域树 * @return @@ -340,4 +353,419 @@ } removeById(id); } + + /** + * 医疗机构分页列表 + * + * @param query + * @return + */ + @Override + public PageDTO<MedicalInstitutionVO> pageMedicalList(DepartmentQuery query) { + String treeCode = ""; + if (Objects.isNull(query.getDepartmentId())) { + SysDepartment myDepartment = getMyDepartment(); + if (Objects.nonNull(myDepartment)) { + treeCode = myDepartment.getTreeCode(); + } + } + Page<MedicalInstitutionVO> page = baseMapper.pageMedicalList(new Page<>(query.getPageCurr(), query.getPageSize()), query.getDepartmentId(), query.getDepartmentName(), query.getContactPerson(), query.getContactPhone(), treeCode); + return PageDTO.of(page); + } + + /** + * 新增医疗机构 + * + * @param dto + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void addMedical(MedicalInstitutionDTO dto) { + SysDepartment currentDepartment = getMyDepartment(); + if (Objects.isNull(currentDepartment)) { + throw new ServiceException("无操作权限"); + } + SysDepartment parent = this.getById(dto.getParentId()); + if (Objects.isNull(parent)) { + throw new ServiceException("找不到对应父级组织"); + } + if (!parent.getTreeCode().startsWith(currentDepartment.getTreeCode())) { + throw new ServiceException("无操作权限"); + } + Long count = this.lambdaQuery().eq(SysDepartment::getDepartmentName, dto.getDepartmentName()) + .eq(SysDepartment::getOrgType, DepartmentEnum.MEDICAL_INSTITUTION.getCode()) + .count(); + if (count > 0) { + throw new ServiceException("医疗机构已存在"); + } + SysDepartment department = BeanUtils.copyBean(dto, SysDepartment.class); + department.setTreeCode(getTreeCode(parent.getId())); + department.setOrgCode(getOrgCode(parent.getId(), DepartmentEnum.MEDICAL_INSTITUTION.getCode())); + department.setOrgType(DepartmentEnum.MEDICAL_INSTITUTION.getCode()); + //查询父级完整区域 + String region = getRegionName(parent); + department.setRegion(region); + save(department); + SysDepartmentInfo sysDepartmentInfo = BeanUtils.copyBean(dto, SysDepartmentInfo.class); + sysDepartmentInfo.setDepartmentId(department.getId()); + sysDepartmentInfoService.save(sysDepartmentInfo); + } + + @Override + public List<DisposalUnitVO> getDisposalUnitListByParentId(Long id) { + List<DisposalUnitVO> disposalUnitList = null; + SysDepartment parent = getById(id); + if (Objects.nonNull(parent)) { + //查询处置单位 + disposalUnitList = baseMapper.getDisposalUnitListByTreeCode(parent.getTreeCode()); + } + return disposalUnitList; + } + + /** + * 获取完成区域 + * + * @param department + * @return + */ + private String getRegionName(SysDepartment department) { + String region = department.getDepartmentName(); + SysDepartment sysDepartment = this.lambdaQuery().eq(SysDepartment::getId, department.getParentId()).ne(SysDepartment::getId, -1).one(); + if (Objects.nonNull(sysDepartment)) { + region = getRegionName(sysDepartment) + region; + } + return region; + } + + /** + * 编辑医疗机构 + * + * @param dto + * @return + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void editMedical(MedicalInstitutionDTO dto) { + if (Objects.isNull(dto.getId())) { + throw new ServiceException("id不能为空"); + } + SysDepartment sysDepartment = getById(dto.getId()); + if (Objects.isNull(sysDepartment)) { + throw new ServiceException("医疗机构不存在"); + } + SysDepartment currentDepartment = getMyDepartment(); + if (Objects.isNull(currentDepartment)) { + throw new ServiceException("无操作权限"); + } + + SysDepartment parent = this.getById(dto.getParentId()); + if (Objects.isNull(parent)) { + throw new ServiceException("找不到对应父级组织"); + } + if (!parent.getTreeCode().startsWith(currentDepartment.getTreeCode())) { + throw new ServiceException("无操作权限"); + } + Long count = this.lambdaQuery().eq(SysDepartment::getDepartmentName, dto.getDepartmentName()) + .eq(SysDepartment::getOrgType, DepartmentEnum.MEDICAL_INSTITUTION.getCode()).ne(SysDepartment::getId, dto.getId()) + .count(); + if (count > 0) { + throw new ServiceException("机构已存在"); + } + SysDepartment department = BeanUtils.copyBean(dto, SysDepartment.class); + if (!department.getParentId().equals(sysDepartment.getParentId())) { + department.setTreeCode(getTreeCode(parent.getId())); + //查询父级完整区域 + String region = getRegionName(parent); + department.setRegion(region); + } + updateById(department); + sysDepartmentInfoService.lambdaUpdate().eq(SysDepartmentInfo::getDepartmentId, sysDepartment.getId()).remove(); + SysDepartmentInfo sysDepartmentInfo = BeanUtils.copyBean(dto, SysDepartmentInfo.class); + sysDepartmentInfo.setDepartmentId(department.getId()); + sysDepartmentInfo.setId(null); + sysDepartmentInfoService.save(sysDepartmentInfo); + } + + /** + * 医疗机构详情 + * + * @param id + * @return + */ + @Override + public MedicalInstitutionVO getMedicalDetailById(Long id) { + MedicalInstitutionVO vo = baseMapper.getMedicalDetailById(id); + List<DisposalUnitVO> disposalUnitList = getDisposalUnitListByParentId(vo.getParentId()); + vo.setDisposalUnitList(disposalUnitList); + return vo; + } + + /** + * 删除医疗机构 + * + * @param id + */ + @Override + public void deleteMedical(Long id) { + Long count = sysUserDepartmentService.lambdaQuery().eq(SysUserDepartment::getDepartmentId, id).count(); + if (count > 0) { + throw new ServiceException("该医疗机构已存在用户,无法删除"); + } + removeById(id); + } + + /** + * 处置单位分页列表 + * + * @param query + * @return + */ + @Override + public PageDTO<DisposalUnitVO> pageDisposalUnitList(DepartmentQuery query) { + String treeCode = ""; + if (Objects.isNull(query.getDepartmentId())) { + SysDepartment myDepartment = getMyDepartment(); + if (Objects.nonNull(myDepartment)) { + treeCode = myDepartment.getTreeCode(); + } + } + Page<DisposalUnitVO> page = baseMapper.pageRegulatoryUnitList(new Page<>(query.getPageCurr(), query.getPageSize()), query.getDepartmentId(), query.getDepartmentName(), query.getContactPerson(), query.getContactPhone(), treeCode); + return PageDTO.of(page); + } + + /** + * 新增处置单位 + * + * @param dto + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void addDisposalUnit(DisposalUnitDTO dto) { + SysDepartment currentDepartment = getMyDepartment(); + if (Objects.isNull(currentDepartment)) { + throw new ServiceException("无操作权限"); + } + SysDepartment parent = this.getById(dto.getParentId()); + if (Objects.isNull(parent)) { + throw new ServiceException("找不到对应父级组织"); + } + if (!parent.getTreeCode().startsWith(currentDepartment.getTreeCode())) { + throw new ServiceException("无操作权限"); + } + Long count = this.lambdaQuery().eq(SysDepartment::getDepartmentName, dto.getDepartmentName()) + .eq(SysDepartment::getOrgType, DepartmentEnum.DISPOSAL_UNIT.getCode()) + .count(); + if (count > 0) { + throw new ServiceException("处置单位已存在"); + } + SysDepartment department = BeanUtils.copyBean(dto, SysDepartment.class); + department.setTreeCode(getTreeCode(parent.getId())); + department.setOrgCode(getOrgCode(parent.getId(), DepartmentEnum.DISPOSAL_UNIT.getCode())); + department.setOrgType(DepartmentEnum.DISPOSAL_UNIT.getCode()); + //查询父级完整区域 + String region = getRegionName(parent); + department.setRegion(region); + save(department); + SysDepartmentInfo sysDepartmentInfo = BeanUtils.copyBean(dto, SysDepartmentInfo.class); + sysDepartmentInfo.setDepartmentId(department.getId()); + sysDepartmentInfoService.save(sysDepartmentInfo); + } + + /** + * 编辑处置单位 + * + * @param dto + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void editDisposalUnit(DisposalUnitDTO dto) { + if (Objects.isNull(dto.getId())) { + throw new ServiceException("id不能为空"); + } + SysDepartment sysDepartment = getById(dto.getId()); + if (Objects.isNull(sysDepartment)) { + throw new ServiceException("处置单位不存在"); + } + SysDepartment currentDepartment = getMyDepartment(); + if (Objects.isNull(currentDepartment)) { + throw new ServiceException("无操作权限"); + } + SysDepartment parent = this.getById(dto.getParentId()); + if (Objects.isNull(parent)) { + throw new ServiceException("找不到对应父级组织"); + } + if (!parent.getTreeCode().startsWith(currentDepartment.getTreeCode())) { + throw new ServiceException("无操作权限"); + } + Long count = this.lambdaQuery().eq(SysDepartment::getDepartmentName, dto.getDepartmentName()) + .eq(SysDepartment::getOrgType, DepartmentEnum.DISPOSAL_UNIT.getCode()).ne(SysDepartment::getId, dto.getId()) + .count(); + if (count > 0) { + throw new ServiceException("处置单位已存在"); + } + SysDepartment department = BeanUtils.copyBean(dto, SysDepartment.class); + + if (!department.getParentId().equals(sysDepartment.getParentId())) { + department.setTreeCode(getTreeCode(parent.getId())); + //查询父级完整区域 + String region = getRegionName(parent); + department.setRegion(region); + } + updateById(department); + sysDepartmentInfoService.lambdaUpdate().eq(SysDepartmentInfo::getDepartmentId, sysDepartment.getId()).remove(); + SysDepartmentInfo sysDepartmentInfo = BeanUtils.copyBean(dto, SysDepartmentInfo.class); + sysDepartmentInfo.setId(null); + sysDepartmentInfo.setDepartmentId(department.getId()); + sysDepartmentInfoService.save(sysDepartmentInfo); + } + + /** + * 处置单位详情 + * + * @param id + * @return + */ + @Override + public DisposalUnitVO getDisposalUnitDetailById(Long id) { + return baseMapper.getDisposalUnitDetailById(id); + } + + @Override + public void deleteDisposalUnit(Long id) { + Long count = sysUserDepartmentService.lambdaQuery().eq(SysUserDepartment::getDepartmentId, id).count(); + if (count > 0) { + throw new ServiceException("该处置单位构已存在用户,无法删除"); + } + removeById(id); + } + + /** + * 监管单位分页列表 + * + * @param query + * @return + */ + @Override + public PageDTO<RegulatoryUnitVO> pageRegulatoryUnitList(DepartmentQuery query) { + String treeCode = ""; + if (Objects.isNull(query.getDepartmentId())) { + SysDepartment myDepartment = getMyDepartment(); + if (Objects.nonNull(myDepartment)) { + treeCode = myDepartment.getTreeCode(); + } + } + Page<SysDepartment> page = this.lambdaQuery().eq(Objects.nonNull(query.getDepartmentId()), SysDepartment::getParentId, query.getDepartmentId()) + .likeRight(StringUtils.isNotBlank(treeCode), SysDepartment::getTreeCode, treeCode) + .like(StringUtils.isNotEmpty(query.getDepartmentName()), SysDepartment::getDepartmentName, query.getDepartmentName()) + .like(StringUtils.isNotBlank(query.getContactPerson()), SysDepartment::getContactPerson, query.getContactPerson()) + .like(StringUtils.isNotBlank(query.getContactPhone()), SysDepartment::getContactPhone, query.getContactPhone()) + .page(new Page<>(query.getPageCurr(), query.getPageSize())); + return PageDTO.of(page, RegulatoryUnitVO.class); + } + + /** + * 新增监管单位 + * + * @param dto + */ + @Override + public void addRegulatoryUnit(RegulatoryUnitDTO dto) { + SysDepartment currentDepartment = getMyDepartment(); + if (Objects.isNull(currentDepartment)) { + throw new ServiceException("无操作权限"); + } + SysDepartment parent = this.getById(dto.getParentId()); + if (Objects.isNull(parent)) { + throw new ServiceException("找不到对应父级组织"); + } + if (!parent.getTreeCode().startsWith(currentDepartment.getTreeCode())) { + throw new ServiceException("无操作权限"); + } + Long count = this.lambdaQuery().eq(SysDepartment::getDepartmentName, dto.getDepartmentName()) + .eq(SysDepartment::getOrgType, DepartmentEnum.REGULATORY_UNIT.getCode()) + .count(); + if (count > 0) { + throw new ServiceException("监管单位已存在"); + } + SysDepartment department = BeanUtils.copyBean(dto, SysDepartment.class); + department.setTreeCode(getTreeCode(parent.getId())); + department.setOrgCode(getOrgCode(parent.getId(), DepartmentEnum.REGULATORY_UNIT.getCode())); + department.setOrgType(DepartmentEnum.REGULATORY_UNIT.getCode()); + //查询父级完整区域 + String region = getRegionName(parent); + department.setRegion(region); + save(department); + } + + /** + * 编辑监管单位 + * + * @param dto + * @return + */ + @Override + public void editRegulatoryUnit(RegulatoryUnitDTO dto) { + if (Objects.isNull(dto.getId())) { + throw new ServiceException("id不能为空"); + } + SysDepartment sysDepartment = getById(dto.getId()); + if (Objects.isNull(sysDepartment)) { + throw new ServiceException("监管单位不存在"); + } + SysDepartment currentDepartment = getMyDepartment(); + if (Objects.isNull(currentDepartment)) { + throw new ServiceException("无操作权限"); + } + SysDepartment parent = this.getById(dto.getParentId()); + if (Objects.isNull(parent)) { + throw new ServiceException("找不到对应父级组织"); + } + if (!parent.getTreeCode().startsWith(currentDepartment.getTreeCode())) { + throw new ServiceException("无操作权限"); + } + Long count = this.lambdaQuery().eq(SysDepartment::getDepartmentName, dto.getDepartmentName()) + .eq(SysDepartment::getOrgType, DepartmentEnum.REGULATORY_UNIT.getCode()).ne(SysDepartment::getId, dto.getId()) + .count(); + if (count > 0) { + throw new ServiceException("监管单位已存在"); + } + SysDepartment department = BeanUtils.copyBean(dto, SysDepartment.class); + + if (!department.getParentId().equals(sysDepartment.getParentId())) { + department.setTreeCode(getTreeCode(parent.getId())); + //查询父级完整区域 + String region = getRegionName(parent); + department.setRegion(region); + } + updateById(department); + } + + /** + * 监管单位详情 + * + * @param id + * @return + */ + @Override + public RegulatoryUnitVO getRegulatoryUnitDetailById(Long id) { + SysDepartment department = this.lambdaQuery().eq(SysDepartment::getId, id).eq(SysDepartment::getOrgType, DepartmentEnum.REGULATORY_UNIT.getCode()).one(); + if (Objects.nonNull(department)) { + return BeanUtils.copyBean(department, RegulatoryUnitVO.class); + } + return null; + } + + /** + * 删除监管单位 + * + * @param id + */ + @Override + public void deleteRegulatoryUnit(Long id) { + Long count = sysUserDepartmentService.lambdaQuery().eq(SysUserDepartment::getDepartmentId, id).count(); + if (count > 0) { + throw new ServiceException("该监管单位构已存在用户,无法删除"); + } + removeById(id); + } } -- Gitblit v1.7.1