| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.basic.entity.CoalField; |
| | | import com.ruoyi.basic.entity.CoalInfo; |
| | | import com.ruoyi.basic.entity.CoalValue; |
| | | import com.ruoyi.basic.mapper.CoalFieldMapper; |
| | | import com.ruoyi.basic.mapper.CoalInfoMapper; |
| | | import com.ruoyi.basic.mapper.CoalValueMapper; |
| | | import com.ruoyi.business.dto.PendingInventoryDto; |
| | | import com.ruoyi.business.entity.OfficialInventory; |
| | | import com.ruoyi.business.entity.PendingInventory; |
| | | import com.ruoyi.business.mapper.OfficialInventoryMapper; |
| | | import com.ruoyi.business.mapper.PendingInventoryMapper; |
| | | import com.ruoyi.business.service.InputInventoryRecordService; |
| | | import com.ruoyi.business.service.InventorySummaryService; |
| | | import com.ruoyi.business.service.PendingInventoryService; |
| | | import com.ruoyi.common.core.domain.entity.SysUser; |
| | | import com.ruoyi.common.exception.base.BaseException; |
| | | import com.ruoyi.common.utils.bean.BeanUtils; |
| | | import com.ruoyi.system.mapper.SysUserMapper; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | import java.util.Set; |
| | | import java.util.*; |
| | | import java.util.function.Function; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | |
| | | |
| | | private final CoalFieldMapper coalFieldMapper; |
| | | |
| | | private final CoalInfoMapper coalInfoMapper; |
| | | |
| | | private final SysUserMapper sysUserMapper; |
| | | |
| | | private final InputInventoryRecordService inputInventoryRecordService; |
| | | |
| | | private final InventorySummaryService inventorySummaryService; |
| | | |
| | | @Override |
| | | public IPage<PendingInventory> selectPendingInventoryList(Page page, PendingInventoryDto pendingInventoryDto) { |
| | | public IPage<PendingInventoryDto> selectPendingInventoryList(Page page, PendingInventoryDto pendingInventoryDto) { |
| | | // 1. 构建主查询 |
| | | LambdaQueryWrapper<PendingInventory> queryWrapper = new LambdaQueryWrapper<>(); |
| | | queryWrapper.orderByDesc(PendingInventory::getCreateTime); |
| | | return pendingInventoryMapper.selectPage(page, queryWrapper); |
| | | |
| | | // 2. 执行主表分页查询 |
| | | IPage<PendingInventory> pendingInventoryPage = pendingInventoryMapper.selectPage(page, queryWrapper); |
| | | |
| | | // 3. 无数据快速返回 |
| | | if (CollectionUtils.isEmpty(pendingInventoryPage.getRecords())) { |
| | | return new Page<>(page.getCurrent(), page.getSize(), pendingInventoryPage.getTotal()); |
| | | } |
| | | |
| | | // 4. 提取所有待处理库存ID |
| | | List<Long> pendingIds = pendingInventoryPage.getRecords().stream() |
| | | .map(PendingInventory::getId) |
| | | .collect(Collectors.toList()); |
| | | |
| | | // 5. 批量查询关联的煤炭信息和正式库存信息 |
| | | List<Long> coalIds = pendingInventoryPage.getRecords().stream() |
| | | .map(PendingInventory::getCoalId) |
| | | .distinct() |
| | | .collect(Collectors.toList()); |
| | | |
| | | // 批量查询CoalInfo |
| | | Map<Long, CoalInfo> coalInfoMap; |
| | | if (!coalIds.isEmpty()) { |
| | | List<CoalInfo> coalInfos = coalInfoMapper.selectList(new LambdaQueryWrapper<CoalInfo>().in(CoalInfo::getId, coalIds)); |
| | | coalInfoMap = coalInfos.stream().collect(Collectors.toMap(CoalInfo::getId, Function.identity())); |
| | | } else { |
| | | coalInfoMap = new HashMap<>(); |
| | | } |
| | | |
| | | // 5. 批量查询登记人id |
| | | List<Long> registrantIds = pendingInventoryPage.getRecords().stream() |
| | | .map(PendingInventory::getRegistrantId) |
| | | .distinct() |
| | | .toList(); |
| | | // 批量查询登记人 |
| | | Map<Long, SysUser> sysUserMap; |
| | | if (!registrantIds.isEmpty()) { |
| | | List<SysUser> sysUsers = sysUserMapper.selectList(registrantIds); |
| | | sysUserMap = sysUsers.stream().collect(Collectors.toMap(SysUser::getUserId, Function.identity())); |
| | | } else { |
| | | sysUserMap = new HashMap<>(); |
| | | } |
| | | |
| | | // 批量查询正式库存信息 |
| | | Map<Long, Long> pendingToOfficialMap = getOfficialInventoryMap(pendingIds); |
| | | |
| | | // 6. 转换DTO并设置相关字段 |
| | | return pendingInventoryPage.convert(record -> { |
| | | PendingInventoryDto dto = new PendingInventoryDto(); |
| | | BeanUtils.copyProperties(record, dto); |
| | | |
| | | // 设置Coal信息 |
| | | CoalInfo coalInfo = coalInfoMap.get(record.getCoalId()); |
| | | if (coalInfo != null) { |
| | | dto.setCoal(coalInfo.getCoal()); |
| | | } |
| | | |
| | | // 设置登记人 |
| | | SysUser sysUser = sysUserMap.get(record.getRegistrantId()); |
| | | if (sysUser != null) { |
| | | dto.setRegistrant(sysUser.getNickName()); |
| | | } |
| | | |
| | | // 从预加载的Map中获取officialId |
| | | dto.setOfficialId(pendingToOfficialMap.getOrDefault(record.getId(), null)); |
| | | |
| | | return dto; |
| | | }); |
| | | } |
| | | |
| | | |
| | | // 批量获取待处理库存与正式库存的映射关系 |
| | | private Map<Long, Long> getOfficialInventoryMap(List<Long> pendingIds) { |
| | | if (CollectionUtils.isEmpty(pendingIds)) { |
| | | return Collections.emptyMap(); |
| | | } |
| | | |
| | | // 查询关联的正式库存数据 |
| | | LambdaQueryWrapper<OfficialInventory> wrapper = new LambdaQueryWrapper<>(); |
| | | wrapper.select(OfficialInventory::getId, OfficialInventory::getPendingId) |
| | | .in(OfficialInventory::getPendingId, pendingIds); |
| | | |
| | | return officialInventoryMapper.selectList(wrapper) |
| | | .stream() |
| | | .collect(Collectors.toMap( |
| | | OfficialInventory::getPendingId, |
| | | OfficialInventory::getId, |
| | | (existing, replacement) -> existing // 如果有重复,保留第一个 |
| | | )); |
| | | } |
| | | |
| | | @Override |
| | |
| | | coalValue.setCoalValue(value); |
| | | coalValue.setFields(key); |
| | | coalValue.setFieldName(fieldName); |
| | | coalValue.setType(String.valueOf(1)); |
| | | i = coalValueMapper.insert(coalValue); |
| | | } |
| | | } |
| | |
| | | } else { |
| | | pendingInventoryMapper.deleteById(pendingInventoryDto.getPId()); |
| | | } |
| | | officialInventoryMapper.delete(new LambdaQueryWrapper<OfficialInventory>().eq(OfficialInventory::getPendingId, pendingInventoryDto.getPId())); |
| | | OfficialInventory officialInventory = new OfficialInventory(); |
| | | BeanUtils.copyProperties(pendingInventory, officialInventory); |
| | | officialInventory.setId(null); |
| | | officialInventory.setPendingId(pendingInventoryDto.getPId()); |
| | | officialInventory.setInventoryQuantity(quantity); |
| | | officialInventoryMapper.insert(officialInventory); |
| | | //正式库 |
| | | if (pendingInventoryDto.getOfficialId() == null) { |
| | | OfficialInventory officialInventory = new OfficialInventory(); |
| | | BeanUtils.copyProperties(pendingInventory, officialInventory); |
| | | officialInventory.setId(null); |
| | | officialInventory.setPendingId(pendingInventoryDto.getPId()); |
| | | officialInventory.setInventoryQuantity(quantity); |
| | | officialInventoryMapper.insert(officialInventory); |
| | | } else { |
| | | OfficialInventory officialInventory = officialInventoryMapper.selectById(pendingInventoryDto.getOfficialId()); |
| | | officialInventory.setInventoryQuantity(quantity.add(officialInventory.getInventoryQuantity())); |
| | | officialInventoryMapper.updateById(officialInventory); |
| | | } |
| | | } |
| | | return i; |
| | | } |