|
|
|
@ -14,6 +14,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springblade.common.constant.RabbitConstant; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.core.tool.utils.ObjectUtil; |
|
|
|
|
import org.springblade.system.entity.Tenant; |
|
|
|
|
import org.springblade.system.feign.ISysClient; |
|
|
|
@ -25,6 +26,8 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.function.Function; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
@Slf4j |
|
|
|
|
@RabbitListener(queues = RabbitConstant.BUSINESS_PRE_CONVERSION_DATA_QUEUE) |
|
|
|
@ -114,7 +117,7 @@ public class BusinessPreOrderDataQueueHandler {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void saveOtherDataBase(List<DistributionBusinessPreOrderEntity> dataResult, String maillName) { |
|
|
|
|
|
|
|
|
|
String method = "########################saveOtherDataBase"; |
|
|
|
|
R<Tenant> tenantByName = sysClient.getTenantByName(maillName); |
|
|
|
|
if(tenantByName.isSuccess()){ |
|
|
|
|
Tenant tenant = tenantByName.getData(); |
|
|
|
@ -122,18 +125,42 @@ public class BusinessPreOrderDataQueueHandler {
|
|
|
|
|
log.info(">>>>>>>>>>>>> BusinessPreOrderDataQueueHandler 租户不存在"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (DistributionBusinessPreOrderEntity distributionBusinessPreOrderEntity : dataResult) { |
|
|
|
|
distributionBusinessPreOrderEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
if (dataResult.isEmpty()) { |
|
|
|
|
log.info(method+"dataResult 参数错误"); |
|
|
|
|
} |
|
|
|
|
Map<Integer, List<DistributionBusinessPreOrderEntity>> map = dataResult.stream().collect(Collectors.groupingBy(DistributionBusinessPreOrderEntity::getInWarehouse)); |
|
|
|
|
if (Func.isNotEmpty(map.get(1))){ |
|
|
|
|
//存在需要进行删除的数据
|
|
|
|
|
List<DistributionBusinessPreOrderEntity> deleteList = map.get(1); |
|
|
|
|
if (!deleteList.isEmpty()) { |
|
|
|
|
Map<String, List<DistributionBusinessPreOrderEntity>> deletedMap = deleteList.stream().collect(Collectors.groupingBy(DistributionBusinessPreOrderEntity::getReservationCode)); |
|
|
|
|
deletedMap.forEach((k,v)->{ |
|
|
|
|
List<String> deletedPackageList = v.stream().map(DistributionBusinessPreOrderEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
log.info("删除商家端数据>>>>reservationCode:{}",deletedPackageList); |
|
|
|
|
if (!deletedPackageList.isEmpty()){ |
|
|
|
|
//进行删除
|
|
|
|
|
Integer row = distributionBusinessPreOrderService.deleteBusinessPreOrder(k,deletedPackageList); |
|
|
|
|
log.info("删除商家端数据>>>>row:{}",row); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(map.get(2))){ |
|
|
|
|
//存在可能变更的数据
|
|
|
|
|
List<DistributionBusinessPreOrderEntity> mapList = map.get(2); |
|
|
|
|
for (DistributionBusinessPreOrderEntity distributionBusinessPreOrderEntity : mapList) { |
|
|
|
|
distributionBusinessPreOrderEntity.setTenantId(tenant.getTenantId()); |
|
|
|
|
|
|
|
|
|
DynamicDataSourceContextHolder.push(tenant.getTenantId()); |
|
|
|
|
|
|
|
|
|
List<DistributionBusinessPreOrderEntity> list = distributionBusinessPreOrderService.list(); |
|
|
|
|
|
|
|
|
|
distributionBusinessPreOrderService.saveBatch(dataResult); |
|
|
|
|
DynamicDataSourceContextHolder.poll(); |
|
|
|
|
} |
|
|
|
|
DynamicDataSourceContextHolder.push(tenant.getTenantId()); |
|
|
|
|
distributionBusinessPreOrderService.saveBatch(mapList); |
|
|
|
|
DynamicDataSourceContextHolder.poll(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// for (DistributionBusinessPreOrderEntity distributionBusinessPreOrderEntity : dataResult) {
|
|
|
|
|
// distributionBusinessPreOrderEntity.setTenantId(tenant.getTenantId());
|
|
|
|
|
// }
|
|
|
|
|
// DynamicDataSourceContextHolder.push(tenant.getTenantId());
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|