|
|
|
@ -22,25 +22,37 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.logpm.basicdata.dto.BasicdataStorageServicesDTO; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataClientEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataClientLogEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataStorageServicesEntity; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.excel.BasicdataStorageServicesExcel; |
|
|
|
|
import com.logpm.basicdata.mapper.BasicdataStorageServicesMapper; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataClientLogService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataClientService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataStorageServicesService; |
|
|
|
|
import com.logpm.basicdata.service.IBasicdataWarehouseService; |
|
|
|
|
import com.logpm.basicdata.vo.BasicdataStorageServicesVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
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.system.feign.IUserClient; |
|
|
|
|
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 java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 门店服务仓库表 服务实现类 |
|
|
|
@ -49,14 +61,22 @@ import java.util.Map;
|
|
|
|
|
* @since 2023-05-16 |
|
|
|
|
*/ |
|
|
|
|
@Service |
|
|
|
|
@AllArgsConstructor |
|
|
|
|
@Slf4j |
|
|
|
|
public class BasicdataStorageServicesServiceImpl extends BaseServiceImpl<BasicdataStorageServicesMapper, BasicdataStorageServicesEntity> implements IBasicdataStorageServicesService { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataWarehouseService basicdataWarehouseService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private IUserClient userClient; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
@Lazy |
|
|
|
|
private IBasicdataClientService basicdataClientService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataClientLogService basicdataClientLogService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<BasicdataStorageServicesVO> selectBasicdataStorageServicesPage(IPage<BasicdataStorageServicesVO> page, BasicdataStorageServicesVO basicdataStorageServices) { |
|
|
|
|
return page.setRecords(baseMapper.selectBasicdataStorageServicesPage(page, basicdataStorageServices)); |
|
|
|
@ -74,79 +94,159 @@ public class BasicdataStorageServicesServiceImpl extends BaseServiceImpl<Basicda
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
public boolean submitSave(BasicdataStorageServicesDTO basicdataStorageServices) { |
|
|
|
|
|
|
|
|
|
public R submitSave(BasicdataStorageServicesDTO basicdataStorageServices) { |
|
|
|
|
String method = "#####################################BasicdataStorageServicesServiceImpl.submitSave"; |
|
|
|
|
if (Objects.isNull(basicdataStorageServices.getClientId())) { |
|
|
|
|
log.error(method + "clientID参数缺失"); |
|
|
|
|
return R.fail("参数缺失"); |
|
|
|
|
} |
|
|
|
|
if (Objects.isNull(basicdataStorageServices.getServeWarehouseId())) { |
|
|
|
|
log.error(method + "serveWarehouseId参数缺失"); |
|
|
|
|
return R.fail("参数缺失"); |
|
|
|
|
} |
|
|
|
|
BasicdataClientEntity clientEntity = basicdataClientService.getById(basicdataStorageServices.getClientId()); |
|
|
|
|
if (Objects.isNull(clientEntity)) { |
|
|
|
|
log.error(method + "查询客户信息错误clientID:{}", basicdataStorageServices.getClientId()); |
|
|
|
|
return R.fail("查询客户信息错误"); |
|
|
|
|
} |
|
|
|
|
BasicdataWarehouseEntity warehouseService = basicdataWarehouseService.getById(basicdataStorageServices.getServeWarehouseId()); |
|
|
|
|
if (Objects.isNull(warehouseService)) { |
|
|
|
|
log.error(method + "查询服务仓信息错误warehouseID:{}", basicdataStorageServices.getServeWarehouseId()); |
|
|
|
|
return R.fail("查询服务仓信息错误"); |
|
|
|
|
} |
|
|
|
|
List<BasicdataStorageServicesEntity> list = this.list(Wrappers.<BasicdataStorageServicesEntity>query().lambda() |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getClientId, basicdataStorageServices.getClientId()) |
|
|
|
|
); |
|
|
|
|
Map<String, List<BasicdataStorageServicesEntity>> listMap = null; |
|
|
|
|
if (!list.isEmpty()) { |
|
|
|
|
listMap = list.stream().collect(Collectors.groupingBy(BasicdataStorageServicesEntity::getSendWarehouseName)); |
|
|
|
|
} |
|
|
|
|
if (ObjectUtils.isNotNull(basicdataStorageServices.getId())) { |
|
|
|
|
|
|
|
|
|
//进行日志记录
|
|
|
|
|
BasicdataClientLogEntity basicdataClientLogEntity = new BasicdataClientLogEntity(); |
|
|
|
|
basicdataClientLogEntity.setClientName(clientEntity.getClientName()); |
|
|
|
|
basicdataClientLogEntity.setClientId(clientEntity.getId()); |
|
|
|
|
basicdataClientLogEntity.setOperator(AuthUtil.getNickName()); |
|
|
|
|
BasicdataStorageServicesEntity entity = this.getById(basicdataStorageServices.getId()); |
|
|
|
|
if (Objects.isNull(clientEntity)) { |
|
|
|
|
log.error(method + "查询发站仓配置错误id:{}", basicdataStorageServices.getId()); |
|
|
|
|
return R.fail("查询发站仓配置错误"); |
|
|
|
|
} |
|
|
|
|
// 获取仓库名称
|
|
|
|
|
BasicdataWarehouseEntity sendBasicdataWarehouseEntity = basicdataWarehouseService.getById(basicdataStorageServices.getSendWarehouseId()); |
|
|
|
|
if (sendBasicdataWarehouseEntity != null) { |
|
|
|
|
basicdataStorageServices.setSendWarehouseName(sendBasicdataWarehouseEntity.getName()); |
|
|
|
|
if (!Objects.isNull(listMap)) { |
|
|
|
|
List<BasicdataStorageServicesEntity> basicdataStorageServicesEntities = listMap.get(sendBasicdataWarehouseEntity.getName()); |
|
|
|
|
if (!Objects.isNull(basicdataStorageServicesEntities)) { |
|
|
|
|
return R.fail("已存在发站仓配置!!!"); |
|
|
|
|
} |
|
|
|
|
BasicdataWarehouseEntity serveBasicdataWarehouseEntity = basicdataWarehouseService.getById(basicdataStorageServices.getServeWarehouseId()); |
|
|
|
|
if(serveBasicdataWarehouseEntity!=null){ |
|
|
|
|
basicdataStorageServices.setServeWarehouseName(serveBasicdataWarehouseEntity.getName()); |
|
|
|
|
} |
|
|
|
|
basicdataStorageServices.setSendWarehouseName(sendBasicdataWarehouseEntity.getName()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
basicdataStorageServices.setServeWarehouseName(warehouseService.getName()); |
|
|
|
|
String content = "服务仓配置发站仓由[" + entity.getSendWarehouseName() + "]变更为-->[" + basicdataStorageServices.getSendWarehouseName() + "],服务仓由[" + entity.getServeWarehouseName() + "]变更为-->[" + basicdataStorageServices.getServeWarehouseName() + "]"; |
|
|
|
|
basicdataClientLogEntity.setContent(content); |
|
|
|
|
basicdataClientLogService.saveAppointLog(basicdataClientLogEntity); |
|
|
|
|
this.updateById(basicdataStorageServices); |
|
|
|
|
return true; |
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
} else { |
|
|
|
|
//添加
|
|
|
|
|
List<String> addSendWarehouseIds = new ArrayList<>(); |
|
|
|
|
int a = 0; |
|
|
|
|
if (Func.isEmpty(basicdataStorageServices.getSendWarehouseIds())) { |
|
|
|
|
//需要进行所有仓库的获取
|
|
|
|
|
List<BasicdataWarehouseEntity> warehouseList = basicdataWarehouseService.list(); |
|
|
|
|
|
|
|
|
|
if(ObjectUtils.isNull( basicdataStorageServices.getSendWarehouseIds()) || basicdataStorageServices.getSendWarehouseIds().size() == 0 ){ |
|
|
|
|
|
|
|
|
|
//查询有没有过服务舱
|
|
|
|
|
List<BasicdataStorageServicesEntity> list = this.list(Wrappers.<BasicdataStorageServicesEntity>query().lambda() |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getServeWarehouseId, basicdataStorageServices.getServeWarehouseId()) |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getClientId, basicdataStorageServices.getClientId()) |
|
|
|
|
); |
|
|
|
|
boolean b = list.stream().anyMatch(i -> ObjectUtil.isEmpty(i.getSendWarehouseId())); |
|
|
|
|
if(b){ |
|
|
|
|
throw new ServiceException("当前添加已存在!"); |
|
|
|
|
// List<BasicdataWarehouseEntity> warehouseList = basicdataWarehouseService.getMyWarehouseList();
|
|
|
|
|
if (!warehouseList.isEmpty()) { |
|
|
|
|
List<String> allWarehouseIds = warehouseList.stream().map(BasicdataWarehouseEntity::getId).map(String::valueOf).collect(Collectors.toList()); |
|
|
|
|
a = warehouseList.size(); |
|
|
|
|
if (!list.isEmpty()) { |
|
|
|
|
//存在有服务仓信息
|
|
|
|
|
List<String> allWarehouseId = warehouseList.stream().filter(f -> !list.stream().map(BasicdataStorageServicesEntity::getSendWarehouseName).collect(Collectors.toList()).contains(f.getName())).map(BasicdataWarehouseEntity::getId).map(String::valueOf).collect(Collectors.toList()); |
|
|
|
|
// List<String> allWarehouseId = allWarehouseIds.stream().filter(f -> !list.stream().map(BasicdataStorageServicesEntity::getSendWarehouseName).collect(Collectors.toList()).contains(f)).collect(Collectors.toList());
|
|
|
|
|
if (!allWarehouseId.isEmpty()) { |
|
|
|
|
addSendWarehouseIds.addAll(allWarehouseId); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
//没有服务仓信息
|
|
|
|
|
addSendWarehouseIds.addAll(allWarehouseIds); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
//校验当前选择的服务仓是否存在有配置
|
|
|
|
|
List<String> sendWarehouseIds = basicdataStorageServices.getSendWarehouseIds(); |
|
|
|
|
|
|
|
|
|
if (!list.isEmpty()) { |
|
|
|
|
List<String> warehouseIds = sendWarehouseIds.stream().filter(f -> !list.stream().map(BasicdataStorageServicesEntity::getSendWarehouseId).collect(Collectors.toList()).contains(f)).collect(Collectors.toList()); |
|
|
|
|
if (!warehouseIds.isEmpty()) { |
|
|
|
|
addSendWarehouseIds.addAll(warehouseIds); |
|
|
|
|
} else { |
|
|
|
|
return R.fail("当前添加服务仓均已存在配置"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
List<BasicdataStorageServicesEntity> servicesEntities = new ArrayList<>(); |
|
|
|
|
if(ObjectUtil.isEmpty(sendWarehouseIds) || sendWarehouseIds.size() < 1){ |
|
|
|
|
List<BasicdataClientLogEntity> basicdataClientLogEntityList = new ArrayList<>(); |
|
|
|
|
if (!addSendWarehouseIds.isEmpty()) { |
|
|
|
|
if (Objects.equals(addSendWarehouseIds.size(),a)){ |
|
|
|
|
//校验是否进行了一次全部的添加
|
|
|
|
|
List<BasicdataStorageServicesEntity> allList = this.list(Wrappers.<BasicdataStorageServicesEntity>query().lambda() |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getClientId, clientEntity.getId()) |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getSendWarehouseName, "全部") |
|
|
|
|
); |
|
|
|
|
if (!allList.isEmpty()) { |
|
|
|
|
return R.fail("已存在全部的服务仓配置"); |
|
|
|
|
}else { |
|
|
|
|
log.error(method+"该客户下不存在未添加发站仓信息,已存在配置:{}",list.stream().map(BasicdataStorageServicesEntity::getSendWarehouseId).collect(Collectors.toList())); |
|
|
|
|
} |
|
|
|
|
BasicdataStorageServicesEntity basicdataStorageServicesEntity = new BasicdataStorageServicesEntity(); |
|
|
|
|
BeanUtils.copyProperties(basicdataStorageServices,basicdataStorageServicesEntity); |
|
|
|
|
// 获取仓库名称
|
|
|
|
|
BasicdataWarehouseEntity serveBasicdataWarehouseEntity = basicdataWarehouseService.getById(basicdataStorageServices.getServeWarehouseId()); |
|
|
|
|
basicdataStorageServicesEntity.setServeWarehouseName(serveBasicdataWarehouseEntity.getName()); |
|
|
|
|
basicdataStorageServicesEntity.setSendWarehouseName("全部"); |
|
|
|
|
basicdataStorageServicesEntity.setClientId(clientEntity.getId()); |
|
|
|
|
basicdataStorageServicesEntity.setDistinguish(2); |
|
|
|
|
basicdataStorageServicesEntity.setServeWarehouseName(warehouseService.getName()); |
|
|
|
|
basicdataStorageServicesEntity.setServeWarehouseId(warehouseService.getId()); |
|
|
|
|
// basicdataStorageServicesEntity.setSendWarehouseId(addSendWarehouseIds.stream().collect(Collectors.joining(",")));
|
|
|
|
|
servicesEntities.add(basicdataStorageServicesEntity); |
|
|
|
|
//进行日志记录
|
|
|
|
|
BasicdataClientLogEntity basicdataClientLogEntity = new BasicdataClientLogEntity(); |
|
|
|
|
basicdataClientLogEntity.setClientName(clientEntity.getClientName()); |
|
|
|
|
basicdataClientLogEntity.setClientId(clientEntity.getId()); |
|
|
|
|
basicdataClientLogEntity.setOperator(AuthUtil.getNickName()); |
|
|
|
|
String content = "新增服务仓配置-->发站仓[全部],服务仓["+basicdataStorageServicesEntity.getServeWarehouseName()+"]"; |
|
|
|
|
basicdataClientLogEntity.setContent(content); |
|
|
|
|
basicdataClientLogEntityList.add(basicdataClientLogEntity); |
|
|
|
|
}else { |
|
|
|
|
sendWarehouseIds.forEach( i ->{ |
|
|
|
|
|
|
|
|
|
List<BasicdataStorageServicesEntity> list = this.list(Wrappers.<BasicdataStorageServicesEntity>query().lambda() |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getServeWarehouseId, basicdataStorageServices.getServeWarehouseId()) |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getSendWarehouseId, i) |
|
|
|
|
.eq(BasicdataStorageServicesEntity::getClientId, basicdataStorageServices.getClientId()) |
|
|
|
|
|
|
|
|
|
); |
|
|
|
|
if(list.size() < 1){ |
|
|
|
|
addSendWarehouseIds.forEach(i -> { |
|
|
|
|
BasicdataStorageServicesEntity basicdataStorageServicesEntity = new BasicdataStorageServicesEntity(); |
|
|
|
|
BeanUtils.copyProperties(basicdataStorageServices, basicdataStorageServicesEntity); |
|
|
|
|
// 获取仓库名称
|
|
|
|
|
BasicdataWarehouseEntity sendBasicdataWarehouseEntity = basicdataWarehouseService.getById(i); |
|
|
|
|
basicdataStorageServicesEntity.setSendWarehouseName(sendBasicdataWarehouseEntity.getName()); |
|
|
|
|
BasicdataWarehouseEntity serveBasicdataWarehouseEntity = basicdataWarehouseService.getById(basicdataStorageServices.getServeWarehouseId()); |
|
|
|
|
basicdataStorageServicesEntity.setServeWarehouseName(serveBasicdataWarehouseEntity.getName()); |
|
|
|
|
basicdataStorageServicesEntity.setSendWarehouseId(i); |
|
|
|
|
basicdataStorageServicesEntity.setServeWarehouseName(warehouseService.getName()); |
|
|
|
|
basicdataStorageServicesEntity.setSendWarehouseId(i.toString()); |
|
|
|
|
servicesEntities.add(basicdataStorageServicesEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//进行日志记录
|
|
|
|
|
BasicdataClientLogEntity basicdataClientLogEntity = new BasicdataClientLogEntity(); |
|
|
|
|
basicdataClientLogEntity.setClientName(clientEntity.getClientName()); |
|
|
|
|
basicdataClientLogEntity.setClientId(clientEntity.getId()); |
|
|
|
|
basicdataClientLogEntity.setOperator(AuthUtil.getNickName()); |
|
|
|
|
String content = "新增服务仓配置-->发站仓["+basicdataStorageServicesEntity.getSendWarehouseName()+"],服务仓["+basicdataStorageServicesEntity.getServeWarehouseName()+"]"; |
|
|
|
|
basicdataClientLogEntity.setContent(content); |
|
|
|
|
basicdataClientLogEntityList.add(basicdataClientLogEntity); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(servicesEntities.size() > 0){ |
|
|
|
|
if (!servicesEntities.isEmpty()) { |
|
|
|
|
this.saveBatch(servicesEntities); |
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
if (!basicdataClientLogEntityList.isEmpty()) { |
|
|
|
|
//进行批量日志保存
|
|
|
|
|
basicdataClientLogService.saveBatchAppointLog(basicdataClientLogEntityList); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// return this.saveOrUpdate(basicdataStorageServices);
|
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|