|
|
|
@ -20,6 +20,7 @@ import com.logpm.trunkline.entity.TrunklineAdvanceDetailEntity;
|
|
|
|
|
import com.logpm.trunkline.entity.TrunklineAdvanceEntity; |
|
|
|
|
import com.logpm.trunkline.mapper.TrunklineAdvanceDetailMapper; |
|
|
|
|
import com.logpm.trunkline.mapper.TrunklineAdvanceMapper; |
|
|
|
|
import com.logpm.trunkline.service.IPackageTrackLogAsyncService; |
|
|
|
|
import com.logpm.trunkline.service.ISendFanoutService; |
|
|
|
|
import com.logpm.trunkline.service.ITrunklineAdvanceDetailService; |
|
|
|
|
import com.logpm.trunkline.vo.*; |
|
|
|
@ -43,6 +44,7 @@ import org.springblade.core.mp.base.BaseServiceImpl;
|
|
|
|
|
import org.springblade.core.redis.cache.BladeRedis; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.core.tool.utils.ObjectUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
@ -67,6 +69,8 @@ public class TrunklineAdvanceDetailServiceImpl extends BaseServiceImpl<Trunkline
|
|
|
|
|
|
|
|
|
|
private final ISendFanoutService sendFanoutService; |
|
|
|
|
|
|
|
|
|
private final IPackageTrackLogAsyncService packageTrackLogAsyncService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void updatePackageStatusById(String packageStatus, Long advanceDetailId, Long warehouseId, String warehouseName, Date incomingTime) { |
|
|
|
|
baseMapper.updatePackageStatusById(packageStatus, advanceDetailId, warehouseId, warehouseName, incomingTime); |
|
|
|
@ -254,25 +258,44 @@ public class TrunklineAdvanceDetailServiceImpl extends BaseServiceImpl<Trunkline
|
|
|
|
|
@Override |
|
|
|
|
public R deleteAdvanceDetail(AdvanceDetailDTO advanceDetailDTO) { |
|
|
|
|
List<Long> advanceDetailIds = advanceDetailDTO.getAdvanceDetailIds(); |
|
|
|
|
for (Long advanceDetailId : advanceDetailIds) { |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = getById(advanceDetailId); |
|
|
|
|
Long advanceId = advanceDetailEntity.getAdvanceId(); |
|
|
|
|
baseMapper.deleteAdvanceDetailById(advanceDetailId); |
|
|
|
|
|
|
|
|
|
//判断暂存单下还有没有包件
|
|
|
|
|
List<String> strings = baseMapper.findOrderPackageCodesByAdvanceId(advanceId); |
|
|
|
|
if (0 == strings.size()) { |
|
|
|
|
//删除暂存单
|
|
|
|
|
List<Long> advanceIds = new ArrayList<>(); |
|
|
|
|
advanceIds.add(advanceId); |
|
|
|
|
advanceMapper.deletedAdvance(advanceIds); |
|
|
|
|
} else { |
|
|
|
|
//数量减一
|
|
|
|
|
advanceMapper.subTotalNumByAdvanceId(advanceId); |
|
|
|
|
|
|
|
|
|
QueryWrapper<TrunklineAdvanceDetailEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.in("id", advanceDetailIds); |
|
|
|
|
|
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailEntities = baseMapper.selectList(queryWrapper); |
|
|
|
|
//把advanceDetailEntities通过advanceId进行分组
|
|
|
|
|
Map<Long, List<TrunklineAdvanceDetailEntity>> advanceDetailEntityMap = advanceDetailEntities.stream().collect(Collectors.groupingBy(TrunklineAdvanceDetailEntity::getAdvanceId)); |
|
|
|
|
|
|
|
|
|
List<String> orderPackageCodes = new ArrayList<>(); |
|
|
|
|
advanceDetailEntityMap.keySet().forEach(advanceId -> { |
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailEntities1 = advanceDetailEntityMap.get(advanceId); |
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(advanceDetailEntities1)){ |
|
|
|
|
//把advanceDetailEntities1的id放入一个List
|
|
|
|
|
List<Long> advanceDetailIdList = advanceDetailEntities1.stream().map(TrunklineAdvanceDetailEntity::getId).collect(Collectors.toList()); |
|
|
|
|
baseMapper.deleteListByIds(advanceDetailIdList); |
|
|
|
|
|
|
|
|
|
List<String> strings = baseMapper.findOrderPackageCodesByAdvanceId(advanceId); |
|
|
|
|
if (0 == strings.size()) { |
|
|
|
|
//删除暂存单
|
|
|
|
|
List<Long> advanceIds = new ArrayList<>(); |
|
|
|
|
advanceIds.add(advanceId); |
|
|
|
|
advanceMapper.deletedAdvance(advanceIds); |
|
|
|
|
} else { |
|
|
|
|
//数量减一
|
|
|
|
|
advanceMapper.subTotalNumByAdvanceId(advanceId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把advanceDetailEntities1所有元素的orderPackageCode放入一个List
|
|
|
|
|
List<String> orderPackageCodeList = advanceDetailEntities1.stream().map(TrunklineAdvanceDetailEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
orderPackageCodes.addAll(orderPackageCodeList); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
packageTrackLogAsyncService.addPackageTrackLog(AuthUtil.getTenantId(), AuthUtil.getUserId(), Func.firstLong(AuthUtil.getDeptId()), AuthUtil.getNickName(), orderPackageCodes, advanceDetailDTO.getWarehouseId(), advanceDetailDTO.getWarehouseName(), WorkNodeEnums.DELETE_DATA_ENTRY.getCode(), "包件删除"); |
|
|
|
|
|
|
|
|
|
return R.success("删除成功"); |
|
|
|
|
} |
|
|
|
|