31 changed files with 629 additions and 81 deletions
@ -0,0 +1,48 @@ |
|||||||
|
package com.logpm.oldproject.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@Data |
||||||
|
@TableName("ht_inventory") |
||||||
|
@ApiModel(value = "Inventory对象", description = "盘点任务") |
||||||
|
public class InventoryEntity { |
||||||
|
|
||||||
|
@TableId( |
||||||
|
value = "id", |
||||||
|
type = IdType.AUTO |
||||||
|
) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
private String no; |
||||||
|
|
||||||
|
private Integer storeId; |
||||||
|
|
||||||
|
private String storeName; |
||||||
|
|
||||||
|
private String brandId; |
||||||
|
|
||||||
|
private String brand; |
||||||
|
|
||||||
|
private Date startDate; |
||||||
|
|
||||||
|
private Date endDate; |
||||||
|
|
||||||
|
private Integer administratorsId; |
||||||
|
|
||||||
|
private Integer warehouseId; |
||||||
|
|
||||||
|
private Integer status; |
||||||
|
|
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
private Date updateTime; |
||||||
|
|
||||||
|
private Integer deleteTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,22 @@ |
|||||||
|
package com.logpm.oldproject.feign; |
||||||
|
|
||||||
|
import com.logpm.oldproject.entity.InventoryEntity; |
||||||
|
import org.springblade.common.constant.ModuleNameConstant; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
@FeignClient( |
||||||
|
value = ModuleNameConstant.APPLICATION_OLDPROJECT_NAME |
||||||
|
) |
||||||
|
public interface IInventoryClient { |
||||||
|
|
||||||
|
String API_PREFIX = "/inventory/client"; |
||||||
|
|
||||||
|
@GetMapping(API_PREFIX + "/findEntityByWarehouseIdAndNo") |
||||||
|
InventoryEntity findEntityByWarehouseIdAndNo(@RequestParam Integer oldId, @RequestParam String inventoryNo); |
||||||
|
|
||||||
|
|
||||||
|
// @GetMapping(API_PREFIX + "/getEntityByOrderCode")
|
||||||
|
// OrderCountEntity getEntityByOrderCode(@RequestParam String orderCode, @RequestParam Integer oldWarehouseId);
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package com.logpm.oldproject.feign; |
||||||
|
|
||||||
|
import com.logpm.oldproject.entity.InventoryEntity; |
||||||
|
import com.logpm.oldproject.service.IInventoryService; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
import springfox.documentation.annotations.ApiIgnore; |
||||||
|
|
||||||
|
@ApiIgnore() |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
public class InventoryClient implements IInventoryClient{ |
||||||
|
|
||||||
|
private final IInventoryService inventoryService; |
||||||
|
|
||||||
|
@Override |
||||||
|
public InventoryEntity findEntityByWarehouseIdAndNo(Integer oldId, String inventoryNo) { |
||||||
|
return inventoryService.findEntityByWarehouseIdAndNo(oldId,inventoryNo); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
package com.logpm.oldproject.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.logpm.oldproject.entity.InventoryEntity; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface InventoryMapper extends BaseMapper<InventoryEntity> { |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,7 @@ |
|||||||
|
package com.logpm.oldproject.service; |
||||||
|
|
||||||
|
import com.logpm.oldproject.entity.InventoryEntity; |
||||||
|
|
||||||
|
public interface IInventoryService { |
||||||
|
InventoryEntity findEntityByWarehouseIdAndNo(Integer oldId, String inventoryNo); |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
package com.logpm.oldproject.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.logpm.oldproject.entity.InventoryEntity; |
||||||
|
import com.logpm.oldproject.mapper.InventoryMapper; |
||||||
|
import com.logpm.oldproject.service.IInventoryService; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class InventoryServiceImpl implements IInventoryService { |
||||||
|
|
||||||
|
private final InventoryMapper inventoryMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public InventoryEntity findEntityByWarehouseIdAndNo(Integer oldId, String inventoryNo) { |
||||||
|
QueryWrapper<InventoryEntity> queryWrapper = new QueryWrapper<>(); |
||||||
|
queryWrapper.eq("warehouse_id",oldId) |
||||||
|
.eq("no",inventoryNo) |
||||||
|
.eq("delete_time",0); |
||||||
|
return inventoryMapper.selectOne(queryWrapper); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1,9 +1,14 @@ |
|||||||
package com.logpm.patch.mapper; |
package com.logpm.patch.mapper; |
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
import com.logpm.patch.entity.SyncInventoryEntity; |
import com.logpm.patch.entity.SyncInventoryEntity; |
||||||
import org.apache.ibatis.annotations.Mapper; |
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
|
||||||
@Mapper |
@Mapper |
||||||
public interface SyncInventoryMapper extends BaseMapper<SyncInventoryEntity> { |
public interface SyncInventoryMapper extends BaseMapper<SyncInventoryEntity> { |
||||||
|
|
||||||
|
IPage<SyncInventoryEntity> pageList(IPage<Object> page, @Param("inventoryNo") String inventoryNo, @Param("warehouseId") Long warehouseId); |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="com.logpm.patch.mapper.SyncInventoryMapper"> |
||||||
|
|
||||||
|
<select id="pageList" resultType="com.logpm.patch.entity.SyncInventoryEntity"> |
||||||
|
|
||||||
|
select * |
||||||
|
from logpm_patch_sync_inventory |
||||||
|
where 1=1 |
||||||
|
<if test="inventoryNo != null and inventoryNo != ''"> |
||||||
|
and inventory_no like concat('%',#{inventoryNo},'%') |
||||||
|
</if> |
||||||
|
and warehouse_id = #{warehouseId} |
||||||
|
|
||||||
|
</select> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,10 @@ |
|||||||
|
package com.logpm.patch.service; |
||||||
|
|
||||||
|
import com.logpm.patch.entity.SyncInventoryEntity; |
||||||
|
|
||||||
|
public interface IAsyncDataService { |
||||||
|
|
||||||
|
|
||||||
|
void syncInventoryToPlatform(SyncInventoryEntity syncInventoryEntity); |
||||||
|
|
||||||
|
} |
@ -1,7 +1,15 @@ |
|||||||
package com.logpm.patch.service; |
package com.logpm.patch.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.logpm.patch.dto.SyncInventoryDTO; |
||||||
import com.logpm.patch.entity.SyncInventoryEntity; |
import com.logpm.patch.entity.SyncInventoryEntity; |
||||||
import org.springblade.core.mp.base.BaseService; |
import org.springblade.core.mp.base.BaseService; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
|
||||||
public interface ISyncInventoryService extends BaseService<SyncInventoryEntity> { |
public interface ISyncInventoryService extends BaseService<SyncInventoryEntity> { |
||||||
|
|
||||||
|
IPage<SyncInventoryEntity> pageList(SyncInventoryDTO syncInventoryDTO); |
||||||
|
|
||||||
|
R addSyncTask(String inventoryNo, Long id); |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,139 @@ |
|||||||
|
package com.logpm.patch.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
||||||
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
||||||
|
import com.logpm.oldproject.feign.IOrderClient; |
||||||
|
import com.logpm.patch.entity.OrderSyncRecordEntity; |
||||||
|
import com.logpm.patch.entity.SyncInventoryEntity; |
||||||
|
import com.logpm.patch.mapper.SyncInventoryMapper; |
||||||
|
import com.logpm.patch.service.IAsyncDataService; |
||||||
|
import com.logpm.patch.service.IOrderSyncRecordService; |
||||||
|
import com.logpm.patch.service.ISyncOrderInfoService; |
||||||
|
import com.logpm.patch.service.IWarehouseMappingDataService; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.log4j.Log4j2; |
||||||
|
import org.springblade.common.exception.CustomerException; |
||||||
|
import org.springframework.scheduling.annotation.Async; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Objects; |
||||||
|
|
||||||
|
/** |
||||||
|
* 异步线程处理 |
||||||
|
*/ |
||||||
|
@Log4j2 |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class AsyncDataServiceImpl implements IAsyncDataService { |
||||||
|
|
||||||
|
private final IWarehouseMappingDataService warehouseMappingDataService; |
||||||
|
private final IBasicdataWarehouseClient basicdataWarehouseClient;//新系统仓库
|
||||||
|
private final IOrderClient orderClient;//老系统订单client
|
||||||
|
|
||||||
|
private final IOrderSyncRecordService orderSyncRecordService; |
||||||
|
private final ISyncOrderInfoService syncOrderInfoService; |
||||||
|
|
||||||
|
private final SyncInventoryMapper syncInventoryMapper; |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
@Async |
||||||
|
public void syncInventoryToPlatform(SyncInventoryEntity syncInventoryEntity) { |
||||||
|
|
||||||
|
Integer pageSize = 500;//处理的每页条数
|
||||||
|
Integer oldWarehouseId = syncInventoryEntity.getOldWarehouseId();//老系统仓库id
|
||||||
|
Long newWarehouseId = syncInventoryEntity.getWarehouseId();//新系统仓库id
|
||||||
|
Integer inventoryId = syncInventoryEntity.getInventoryId(); |
||||||
|
|
||||||
|
//查询新系统是否已有仓库信息
|
||||||
|
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(newWarehouseId); |
||||||
|
if(Objects.isNull(basicdataWarehouseEntity)){ |
||||||
|
log.warn("###############syncOrderInfo: 新系统没有仓库信息"); |
||||||
|
throw new CustomerException(403,"新系统没有仓库信息"); |
||||||
|
} |
||||||
|
|
||||||
|
Integer totalPage = 0; |
||||||
|
Integer currentPage = 0; |
||||||
|
//查询该仓库是否有未完成的同步数据
|
||||||
|
QueryWrapper<OrderSyncRecordEntity> queryWrapper = new QueryWrapper<>(); |
||||||
|
queryWrapper.eq("old_warehouse_id",oldWarehouseId) |
||||||
|
.eq("inventory_id",inventoryId) |
||||||
|
.eq("type",1) |
||||||
|
.ne("sync_status",2); |
||||||
|
OrderSyncRecordEntity one = orderSyncRecordService.getOne(queryWrapper); |
||||||
|
if(!Objects.isNull(one)){ |
||||||
|
//因为该仓库有未完成的同步,继续执行
|
||||||
|
totalPage = one.getTotalPage(); |
||||||
|
currentPage = one.getCurrentPage(); |
||||||
|
}else{ |
||||||
|
//查询本次同步一共多少的个订单
|
||||||
|
Integer totalNum = orderClient.getTotalCountBy(null,oldWarehouseId); |
||||||
|
if(totalNum == 0){ |
||||||
|
log.info("################syncOrderInfo: 暂无需要执行的数据"); |
||||||
|
throw new CustomerException(403,"暂无需要执行的数据"); |
||||||
|
} |
||||||
|
log.info("##################syncOrderInfo: 一共需要同步{}条数据",totalNum); |
||||||
|
syncInventoryEntity.setSyncStartDate(new Date()); |
||||||
|
syncInventoryEntity.setSyncStatus(1); |
||||||
|
syncInventoryMapper.updateById(syncInventoryEntity); |
||||||
|
//计算出需要多少页
|
||||||
|
int i = totalNum % pageSize; |
||||||
|
if(i == 0){ |
||||||
|
totalPage = totalNum/pageSize; |
||||||
|
}else{ |
||||||
|
totalPage = totalNum/pageSize + 1; |
||||||
|
} |
||||||
|
currentPage = 0; |
||||||
|
log.info("##################syncOrderInfo: 一共需要同步{}页size为{}的数据",totalPage,pageSize); |
||||||
|
one = new OrderSyncRecordEntity(); |
||||||
|
one.setOldWarehouseId(oldWarehouseId); |
||||||
|
one.setTotalNum(totalNum); |
||||||
|
one.setTotalPage(totalPage); |
||||||
|
one.setType(1); |
||||||
|
one.setCurrentPage(0); |
||||||
|
one.setFinishNum(0); |
||||||
|
one.setSyncStatus(0); |
||||||
|
one.setInventoryId(inventoryId); |
||||||
|
orderSyncRecordService.save(one); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
for (int j = currentPage; j < totalPage; j++) { |
||||||
|
log.info("##################syncOrderInfo: 当前同步的第{}页的数据",j+1); |
||||||
|
try{ |
||||||
|
List<String> orderCodeList = orderClient.findOrderCodeListByPage(null,oldWarehouseId,j,pageSize); |
||||||
|
|
||||||
|
syncOrderInfoService.handleData(orderCodeList,oldWarehouseId,newWarehouseId,inventoryId); |
||||||
|
|
||||||
|
log.info("################syncOrderInfo: 同步成功{}个订单",orderCodeList.size()); |
||||||
|
one.setCurrentPage(j+1); |
||||||
|
one.setFinishNum(one.getFinishNum() + orderCodeList.size()); |
||||||
|
if((j+1) == totalPage){ |
||||||
|
one.setSyncStatus(2); |
||||||
|
syncInventoryEntity.setSyncEndDate(new Date()); |
||||||
|
syncInventoryEntity.setSyncStatus(2); |
||||||
|
syncInventoryMapper.updateById(syncInventoryEntity); |
||||||
|
}else{ |
||||||
|
one.setSyncStatus(1); |
||||||
|
} |
||||||
|
orderSyncRecordService.saveOrUpdate(one); |
||||||
|
}catch (CustomerException e){ |
||||||
|
log.error(e.message,e); |
||||||
|
syncInventoryEntity.setSyncEndDate(new Date()); |
||||||
|
syncInventoryEntity.setSyncStatus(3); |
||||||
|
syncInventoryMapper.updateById(syncInventoryEntity); |
||||||
|
throw new CustomerException(e.code,e.message); |
||||||
|
}catch (Exception e){ |
||||||
|
log.error("#############syncOrderInfo: 同步数据失败",e); |
||||||
|
syncInventoryEntity.setSyncEndDate(new Date()); |
||||||
|
syncInventoryEntity.setSyncStatus(3); |
||||||
|
syncInventoryMapper.updateById(syncInventoryEntity); |
||||||
|
throw new CustomerException(403,"同步数据失败"); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -1,15 +1,96 @@ |
|||||||
package com.logpm.patch.service.impl; |
package com.logpm.patch.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||||
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
||||||
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
||||||
|
import com.logpm.oldproject.entity.InventoryEntity; |
||||||
|
import com.logpm.oldproject.feign.IInventoryClient; |
||||||
|
import com.logpm.patch.dto.SyncInventoryDTO; |
||||||
import com.logpm.patch.entity.SyncInventoryEntity; |
import com.logpm.patch.entity.SyncInventoryEntity; |
||||||
import com.logpm.patch.mapper.SyncInventoryMapper; |
import com.logpm.patch.mapper.SyncInventoryMapper; |
||||||
|
import com.logpm.patch.service.IAsyncDataService; |
||||||
import com.logpm.patch.service.ISyncInventoryService; |
import com.logpm.patch.service.ISyncInventoryService; |
||||||
import lombok.AllArgsConstructor; |
import lombok.AllArgsConstructor; |
||||||
import lombok.extern.slf4j.Slf4j; |
import lombok.extern.slf4j.Slf4j; |
||||||
import org.springblade.core.mp.base.BaseServiceImpl; |
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.StringUtil; |
||||||
import org.springframework.stereotype.Service; |
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.Objects; |
||||||
|
|
||||||
@Slf4j |
@Slf4j |
||||||
@AllArgsConstructor |
@AllArgsConstructor |
||||||
@Service |
@Service |
||||||
public class SyncInventoryServiceImpl extends BaseServiceImpl<SyncInventoryMapper, SyncInventoryEntity> implements ISyncInventoryService { |
public class SyncInventoryServiceImpl extends BaseServiceImpl<SyncInventoryMapper, SyncInventoryEntity> implements ISyncInventoryService { |
||||||
|
|
||||||
|
private final IInventoryClient inventoryClient; |
||||||
|
private final IBasicdataWarehouseClient basicdataWarehouseClient; |
||||||
|
private final IAsyncDataService asyncDataService; |
||||||
|
|
||||||
|
@Override |
||||||
|
public IPage<SyncInventoryEntity> pageList(SyncInventoryDTO syncInventoryDTO) { |
||||||
|
Integer pageNum = syncInventoryDTO.getPageNum(); |
||||||
|
Integer pageSize = syncInventoryDTO.getPageSize(); |
||||||
|
String inventoryNo = syncInventoryDTO.getInventoryNo(); |
||||||
|
Long warehouseId = syncInventoryDTO.getWarehouseId(); |
||||||
|
|
||||||
|
if(Objects.isNull(pageNum)){ |
||||||
|
pageNum = 1; |
||||||
|
} |
||||||
|
if(Objects.isNull(pageSize)){ |
||||||
|
pageSize = 30; |
||||||
|
} |
||||||
|
|
||||||
|
IPage<Object> page = new Page<>(); |
||||||
|
page.setCurrent(pageNum); |
||||||
|
page.setSize(pageSize); |
||||||
|
|
||||||
|
QueryWrapper<SyncInventoryEntity> queryWrapper = new QueryWrapper<>(); |
||||||
|
if(!StringUtil.isBlank(inventoryNo)){ |
||||||
|
queryWrapper.like("inventory_no",inventoryNo); |
||||||
|
} |
||||||
|
return baseMapper.pageList(page,inventoryNo,warehouseId); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public R addSyncTask(String inventoryNo, Long warehouseId) { |
||||||
|
|
||||||
|
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseClient.getEntityWarehouseId(warehouseId); |
||||||
|
if(Objects.isNull(basicdataWarehouseEntity)){ |
||||||
|
log.warn("############addSyncTask: 仓库信息不存在 warehouseId={}",warehouseId); |
||||||
|
return R.fail(403,"仓库信息不存在"); |
||||||
|
} |
||||||
|
Integer oldId = basicdataWarehouseEntity.getOldId(); |
||||||
|
String name = basicdataWarehouseEntity.getName(); |
||||||
|
|
||||||
|
//判断盘点编码是否存在
|
||||||
|
InventoryEntity inventoryEntity = inventoryClient.findEntityByWarehouseIdAndNo(oldId,inventoryNo); |
||||||
|
if(Objects.isNull(inventoryEntity)){ |
||||||
|
log.warn("############addSyncTask: 盘点任务不存在 inventoryNo={} oldId={}",inventoryNo,oldId); |
||||||
|
return R.fail(403,"盘点任务不存在"); |
||||||
|
} |
||||||
|
Integer status = inventoryEntity.getStatus(); |
||||||
|
if(4 != status){ |
||||||
|
log.warn("############addSyncTask: 盘点任务还未完成 status={}",status); |
||||||
|
return R.fail(403,"盘点任务还未完成"); |
||||||
|
} |
||||||
|
|
||||||
|
//创建同步信息
|
||||||
|
SyncInventoryEntity syncInventoryEntity = new SyncInventoryEntity(); |
||||||
|
syncInventoryEntity.setInventoryId(inventoryEntity.getId()); |
||||||
|
syncInventoryEntity.setInventoryNo(inventoryNo); |
||||||
|
syncInventoryEntity.setSyncStatus(0); |
||||||
|
syncInventoryEntity.setWarehouseId(warehouseId); |
||||||
|
syncInventoryEntity.setOldWarehouseId(oldId); |
||||||
|
syncInventoryEntity.setWarehouseName(name); |
||||||
|
save(syncInventoryEntity); |
||||||
|
|
||||||
|
//开启异步线程,同步数据
|
||||||
|
asyncDataService.syncInventoryToPlatform(syncInventoryEntity); |
||||||
|
|
||||||
|
return R.success("添加成功"); |
||||||
|
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue