9 changed files with 168 additions and 20 deletions
@ -0,0 +1,15 @@ |
|||||||
|
package org.springblade.common.constant.opFailRetryPushPackage; |
||||||
|
|
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Getter; |
||||||
|
|
||||||
|
@AllArgsConstructor |
||||||
|
@Getter |
||||||
|
enum PushStatus { |
||||||
|
wait("等待中", 1), |
||||||
|
complete("已完成", 2), |
||||||
|
expire("已过期", 3); |
||||||
|
|
||||||
|
private final String name; |
||||||
|
private final Integer value; |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package com.logpm.factory.oupai.entity; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import org.springblade.core.mp.base.BaseEntity; |
||||||
|
|
||||||
|
@Data |
||||||
|
@TableName("op_fail_retry_push_package") |
||||||
|
@ApiModel(value = "opFailRetryPushPackage对象", description = "欧派失败重推包件") |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class OpFailRetryPushPackageEntity extends BaseEntity { |
||||||
|
/** 预留1 */ |
||||||
|
@ApiModelProperty(name = "预留1",notes = "") |
||||||
|
private String reserve1 ; |
||||||
|
|
||||||
|
/** 预留2 */ |
||||||
|
@ApiModelProperty(name = "预留2",notes = "") |
||||||
|
private String reserve2 ; |
||||||
|
|
||||||
|
/** 预留3 */ |
||||||
|
@ApiModelProperty(name = "预留3",notes = "") |
||||||
|
private String reserve3 ; |
||||||
|
|
||||||
|
/** 预留4 */ |
||||||
|
@ApiModelProperty(name = "预留4",notes = "") |
||||||
|
private String reserve4 ; |
||||||
|
|
||||||
|
/** 预留5 */ |
||||||
|
@ApiModelProperty(name = "预留5",notes = "") |
||||||
|
private String reserve5 ; |
||||||
|
|
||||||
|
/** 预留5 */ |
||||||
|
@TableField("order_package_code") |
||||||
|
@ApiModelProperty(name = "包件码",notes = "") |
||||||
|
private String orderPackageCode; |
||||||
|
|
||||||
|
/** 预留5 */ |
||||||
|
@ApiModelProperty(name = "执行参数",notes = "") |
||||||
|
private String params ; |
||||||
|
|
||||||
|
/** 预留5 */ |
||||||
|
@TableField("push_status") |
||||||
|
@ApiModelProperty(name = "状态:1=待处理,2=已处理,3=已过期",notes = "") |
||||||
|
private Integer pushStatus ; |
||||||
|
|
||||||
|
/** 预留5 */ |
||||||
|
@ApiModelProperty(name = "类型:1=入库,2=出库",notes = "") |
||||||
|
private Integer type ; |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
package com.logpm.factory.oupai.mapper; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.logpm.factory.oupai.entity.OpFailRetryPushPackageEntity; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface OpFailRetryPushPackageMapper extends BaseMapper<OpFailRetryPushPackageEntity>{ |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.logpm.factory.oupai.service; |
||||||
|
|
||||||
|
import com.logpm.factory.comfac.dto.OrderStatusDTO; |
||||||
|
|
||||||
|
public interface OpFailRetryPushPackageService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 记录失败的数据 |
||||||
|
* |
||||||
|
* @param orderPackageCode 包条 |
||||||
|
* @param orderStatusDTO |
||||||
|
*/ |
||||||
|
void record(String orderPackageCode, OrderStatusDTO orderStatusDTO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 重推 |
||||||
|
*/ |
||||||
|
void retry(); |
||||||
|
} |
@ -0,0 +1,61 @@ |
|||||||
|
package com.logpm.factory.oupai.service.impl; |
||||||
|
|
||||||
|
import com.alibaba.nacos.shaded.com.google.gson.Gson; |
||||||
|
import com.logpm.factory.comfac.dto.OrderStatusDTO; |
||||||
|
import com.logpm.factory.oupai.entity.OpFailRetryPushPackageEntity; |
||||||
|
import com.logpm.factory.oupai.mapper.OpFailRetryPushPackageMapper; |
||||||
|
import com.logpm.factory.oupai.service.OpFailRetryPushPackageService; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 欧派数据失败重推 |
||||||
|
*/ |
||||||
|
@Slf4j |
||||||
|
@Service |
||||||
|
@AllArgsConstructor |
||||||
|
public class OpFailRetryPushPackageServiceImpl implements OpFailRetryPushPackageService { |
||||||
|
|
||||||
|
private OpFailRetryPushPackageMapper opFailRetryPushPackageMapper; |
||||||
|
|
||||||
|
private static boolean isRetrying = false; |
||||||
|
private static List<String> retryData; |
||||||
|
|
||||||
|
@Override |
||||||
|
public void record(String orderPackageCode, OrderStatusDTO orderStatusDTO) { |
||||||
|
if (isRetrying) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
try { |
||||||
|
OpFailRetryPushPackageEntity opFailRetryPushPackageEntity = new OpFailRetryPushPackageEntity(); |
||||||
|
|
||||||
|
opFailRetryPushPackageEntity.setOrderPackageCode(orderPackageCode); |
||||||
|
opFailRetryPushPackageEntity.setParams(new Gson().toJson(orderStatusDTO)); |
||||||
|
|
||||||
|
opFailRetryPushPackageMapper.insert(opFailRetryPushPackageEntity); |
||||||
|
|
||||||
|
}catch (Exception e){ |
||||||
|
log.error(e.getMessage(),e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public synchronized void retry() { |
||||||
|
isRetrying = true; |
||||||
|
|
||||||
|
retryData = new ArrayList<>(); |
||||||
|
|
||||||
|
// ......
|
||||||
|
HashMap<String, Object> condition = new HashMap<>(); |
||||||
|
condition.put("status", PushStatus.wait); |
||||||
|
opFailRetryPushPackageMapper.selectByMap(condition); |
||||||
|
|
||||||
|
retryData = null; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue