From 26e4b49b3b51e123e9ce2b055c8e0d37d35df260 Mon Sep 17 00:00:00 2001 From: jiaosong <jiaosong6760@dingtalk.com> Date: 星期五, 18 八月 2023 22:05:44 +0800 Subject: [PATCH] #字段结果 --- server/src/main/java/doumeemes/service/business/impl/SalaryParamServiceImpl.java | 37 +++++++++++++++++++++++++++---------- 1 files changed, 27 insertions(+), 10 deletions(-) diff --git a/server/src/main/java/doumeemes/service/business/impl/SalaryParamServiceImpl.java b/server/src/main/java/doumeemes/service/business/impl/SalaryParamServiceImpl.java index b165cd9..e5c75b8 100644 --- a/server/src/main/java/doumeemes/service/business/impl/SalaryParamServiceImpl.java +++ b/server/src/main/java/doumeemes/service/business/impl/SalaryParamServiceImpl.java @@ -11,16 +11,21 @@ import doumeemes.dao.business.*; import doumeemes.dao.business.model.*; import doumeemes.dao.business.vo.SalaryParamVO; +import doumeemes.dao.ext.MaterialExtMapper; import doumeemes.dao.ext.dto.SalaryParamDTO; import doumeemes.dao.ext.dto.SalaryParamImportDTO; +import doumeemes.dao.ext.vo.DepartmentExtListVO; import doumeemes.service.business.DepartmentService; import doumeemes.service.business.SalaryParamService; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import doumeemes.service.ext.DepartmentExtService; import org.apache.shiro.SecurityUtils; +import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import org.springframework.util.CollectionUtils; @@ -42,6 +47,9 @@ @Autowired private DepartmentMapper departmentMapper; + @Lazy + @Autowired + private DepartmentExtService departmentExtService; @Autowired private MaterialMapper materialMapper; @@ -63,6 +71,7 @@ insert.setProcedureId(salaryParam.getProcedureId()); insert.setMaterialId(salaryParam.getMaterialId()); insert.setDeleted((byte) Constants.ZERO); + insert.setType(salaryParam.getType()); if(findOne(insert) != null){ throw new BusinessException(ResponseStatus.DATA_EXISTS.getCode(),"鍚屼竴涓墿鏂欏湪鐩稿悓宸ュ簭涓嶈兘閲嶅閰嶇疆鍝︼紒"); } @@ -198,17 +207,24 @@ for (int i = 0; i < plansList.size(); i++) { SalaryParamImportDTO salaryParamImportDTO = plansList.get(i); - - QueryWrapper<Department> wrapper = new QueryWrapper<>(); - wrapper.lambda() - .eq(Department::getName,salaryParamImportDTO.getDepartName()) - .eq(Department::getType,Constants.DEPART_TYPE.factory) - .eq(Department::getDeleted,Constants.ZERO) - .last("limit 1"); - Department department = departmentMapper.selectOne(wrapper); - if (Objects.isNull(department)){ +// +// QueryWrapper<Department> wrapper = new QueryWrapper<>(); +// wrapper.lambda() +// .eq(Department::getName,salaryParamImportDTO.getDepartName()) +// .eq(Department::getType,Constants.DEPART_TYPE.factory) +// .eq(Department::getDeleted,Constants.ZERO) +// .last("limit 1"); + Department dparam = new Department(); + dparam.setName(salaryParamImportDTO.getDepartName()); + dparam.setDeleted(Constants.ZERO); + dparam.setType(Constants.DEPART_TYPE.factory); + dparam = departmentExtService.findOne(dparam); + if (Objects.isNull(dparam)){ throw new BusinessException(ResponseStatus.SERVER_ERROR.getCode(), "瀵煎叆鏁版嵁鍐呭銆愬叕鍙稿悕绉般�戞湁璇紒"); } + DepartmentExtListVO department = new DepartmentExtListVO(); + BeanUtils.copyProperties(dparam, department); + Integer comDepartId = departmentExtService.getComDepartId(department); QueryWrapper<Material> materialWrapper = new QueryWrapper<>(); materialWrapper.lambda() @@ -228,6 +244,7 @@ materialDistributeQueryWrapper.lambda() .eq(MaterialDistribute::getMaterialId,material.getId()) .eq(MaterialDistribute::getRootDepartId,department.getRootId()) + .eq(MaterialDistribute::getDepartId, comDepartId) .eq(MaterialDistribute::getDeleted,Constants.ZERO) .last("limit 1"); MaterialDistribute materialDistribute = materialDistributeMapper.selectOne(materialDistributeQueryWrapper); @@ -261,7 +278,7 @@ }).orElse(0); salaryParam.setUnqualified(unqualified); - Integer type = Optional.ofNullable(salaryParamImportDTO.getUnqualified()).map(s -> { + Integer type = Optional.ofNullable(salaryParamImportDTO.getType()).map(s -> { if ("璁′欢".equals(s)) { return 0; } else { -- Gitblit v1.9.3