26 changed files with 1001 additions and 14 deletions
@ -0,0 +1,34 @@
|
||||
package com.logpm.factory.jp.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
@TableName("jinpai_arrival_order") |
||||
@ApiModel(value = "JinpaiArrivalOrder对象", description = "金牌到达订单") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class JinpaiArrivalOrderEntity extends BaseEntity { |
||||
|
||||
private String warehouseName; |
||||
private String ddNum; |
||||
private String ysNum; |
||||
private String contractNumber; |
||||
private Date deliveryTime; |
||||
private String serviceType; |
||||
private String store; |
||||
private String storeCode; |
||||
private String arrivalStatus; |
||||
private Integer total; |
||||
private Date arrivalTime; |
||||
private String administrators; |
||||
private String truckNo; |
||||
private Date loadingTime; |
||||
private Date actualArrivalTime; |
||||
private String source; |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.logpm.factory.jp.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
@Data |
||||
@TableName("jinpai_org_id") |
||||
@ApiModel(value = "JinpaiOrgId对象", description = "金牌组织id") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class JinpaiOrgIdEntity extends BaseEntity { |
||||
|
||||
private String orgId; |
||||
private String orgName; |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
package com.logpm.factory.jp.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
@TableName("jinpai_push_scan_log") |
||||
@ApiModel(value = "JinpaiPushScanLog对象", description = "金牌扫描记录") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class JinpaiPushScanLogEntity extends BaseEntity { |
||||
|
||||
private String warehouseName; |
||||
private String batchNumber; |
||||
private String ysNum; |
||||
private String contractNumber; |
||||
private String ddNum; |
||||
private String unitNo; |
||||
private String inStatus; |
||||
private String inType; |
||||
private String serviceType; |
||||
private Date deliveryTime; |
||||
private Date scanTime; |
||||
private Date arrivalTime; |
||||
private String store; |
||||
private String storeCode; |
||||
private String administrators; |
||||
private String source; |
||||
|
||||
|
||||
} |
@ -0,0 +1,17 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
@JsonIgnoreProperties(ignoreUnknown = true) |
||||
public class ApiResponse<T> { |
||||
|
||||
private int code; |
||||
private String message; |
||||
private T data; |
||||
private List<T> rows; |
||||
|
||||
} |
@ -0,0 +1,107 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class LoginRes implements RCookie { |
||||
|
||||
private String userId; |
||||
|
||||
private String account; |
||||
|
||||
private String nickname; |
||||
|
||||
private String passwordExpirationTime; |
||||
|
||||
private String username; |
||||
|
||||
private String password; |
||||
|
||||
private int sex; |
||||
|
||||
private int age; |
||||
|
||||
private String phone; |
||||
|
||||
private int status; |
||||
|
||||
private String organizationId; |
||||
|
||||
private String createTime; |
||||
|
||||
private String creator; |
||||
|
||||
private String syscode; |
||||
|
||||
private String sysname; |
||||
|
||||
private String orgId; |
||||
|
||||
private String systemdef; |
||||
|
||||
private String companyPid; |
||||
|
||||
private String companyPname; |
||||
|
||||
private String companyId; |
||||
|
||||
private String orgName; |
||||
|
||||
private boolean forceModifyPwd; |
||||
|
||||
private String customerAuthority; |
||||
|
||||
private String loginTime; |
||||
|
||||
private String activeTime; |
||||
|
||||
private String isEnable; |
||||
|
||||
private String printFlag; |
||||
|
||||
private String memberType; |
||||
|
||||
private String logoUrl; |
||||
|
||||
private String baseLine; |
||||
|
||||
private String twoCodeFlag; |
||||
|
||||
private String labelNewServerSwitch; |
||||
|
||||
private String mongoBaselineSwitch; |
||||
|
||||
private String switchConsignerCodeMust; |
||||
|
||||
private String enterpriseName; |
||||
|
||||
private int crmVisitSwitch; |
||||
|
||||
private String switchUserConsignerAdd; |
||||
|
||||
private String switchSmsCheckOpen; |
||||
|
||||
private String orgType; |
||||
|
||||
private String ucgn; |
||||
|
||||
private String fydFlag; |
||||
|
||||
private String email; |
||||
|
||||
private OriginalOrg originalOrg; |
||||
|
||||
private String originalOrgIndex; |
||||
|
||||
private NowOrg nowOrg; |
||||
|
||||
private int nowOrgIndex; |
||||
|
||||
private List<OwnedOrgs> ownedOrgs; |
||||
|
||||
public String cookie; |
||||
|
||||
|
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class NowOrg { |
||||
|
||||
private String id; |
||||
|
||||
private String code; |
||||
|
||||
private String name; |
||||
|
||||
private String orgType; |
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class OriginalOrg { |
||||
|
||||
private String id; |
||||
|
||||
private String code; |
||||
|
||||
private String name; |
||||
|
||||
private String orgType; |
||||
|
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class OwnedOrgs { |
||||
|
||||
private String id; |
||||
|
||||
private String code; |
||||
|
||||
private String name; |
||||
|
||||
private String orgType; |
||||
|
||||
} |
@ -0,0 +1,65 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Data |
||||
public class PushScanLog { |
||||
|
||||
@JsonProperty("REMARK") |
||||
private String remark; |
||||
@JsonProperty("SYSCODE") |
||||
private String sysCode; |
||||
private String arriveOrgId; |
||||
private String arriveOrgName; |
||||
private Integer checkFlag; |
||||
private String containerId; |
||||
private String deliveryMode; |
||||
private String extBoxCode; |
||||
private String goodsName; |
||||
private Integer goodsNumber; |
||||
private Integer goodsNumberOrder; |
||||
private String goodsShelves; |
||||
private String goodsShelvesName; |
||||
private BigDecimal goodsVolume; |
||||
private BigDecimal goodsVolumeOrder; |
||||
private Integer inventoryStatus; |
||||
private String lastOutboundTime; |
||||
private String manualContractNo; |
||||
private String omsExtOrderNo; |
||||
private String omsExtYsId; |
||||
private String orgId; |
||||
private String orgName; |
||||
private String outStockTime; |
||||
private Integer outboundQuantities; |
||||
private String outboundTime; |
||||
private String realEndTime; |
||||
private Integer receiptQuantities; |
||||
private Integer receiptStatus; |
||||
private String receiptTime; |
||||
private String receiveType; |
||||
private String receivingBatchId; |
||||
private String recvSite; |
||||
private Integer rowId; |
||||
private String sendTime; |
||||
private String shopCode; |
||||
private String shopName; |
||||
private String storageLocLabel; |
||||
private String subLabel; |
||||
private Integer subLabelPrintFlag; |
||||
private String subLabelPrintSeq; |
||||
private String toContainerIdFlag; |
||||
private Integer toStorageLocFlag; |
||||
private String transportId; |
||||
private String updateName; |
||||
private String updateTime; |
||||
private String warehouseArea; |
||||
private String warehouseAreaName; |
||||
private String yjInstallAddr; |
||||
private String yjInstallLinker; |
||||
private String yjInstallPhone; |
||||
private String yjOrderNo; |
||||
|
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
public interface RCookie { |
||||
|
||||
String getCookie(); |
||||
|
||||
void setCookie(String cookie); |
||||
|
||||
} |
@ -0,0 +1,164 @@
|
||||
package com.logpm.factory.jp.bean; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class Tran { |
||||
|
||||
private String id; |
||||
|
||||
private String orgId; |
||||
|
||||
private String transportId; |
||||
|
||||
private String shipId; |
||||
|
||||
private String shipItemId; |
||||
|
||||
private String startStockId; |
||||
|
||||
private String writtenOrderId; |
||||
|
||||
private String shipWrittenOrderId; |
||||
|
||||
private String orderId; |
||||
|
||||
private String customerOrderId; |
||||
|
||||
private String transportType; |
||||
|
||||
private String sendSite; |
||||
|
||||
private String recvSite; |
||||
|
||||
private String recvContactsId; |
||||
|
||||
private String receContantsName; |
||||
|
||||
private String revcMobile; |
||||
|
||||
private String recvPhone; |
||||
|
||||
private String recvAddress; |
||||
|
||||
private String shareFee; |
||||
|
||||
private String codAmount; |
||||
|
||||
private String goodsNo; |
||||
|
||||
private String goodsType; |
||||
|
||||
private String goodsName; |
||||
|
||||
private String goodsPack; |
||||
|
||||
private String goodsNumber; |
||||
|
||||
private String goodsWeight; |
||||
|
||||
private String goodsGrossWeight; |
||||
|
||||
private String goodsNetWeight; |
||||
|
||||
private String goodsVolume; |
||||
|
||||
private String goodsAmount; |
||||
|
||||
private String customerNum; |
||||
|
||||
private String goodsLength; |
||||
|
||||
private String goodsWidth; |
||||
|
||||
private String goodsHeigth; |
||||
|
||||
private String creator; |
||||
|
||||
private String createTime; |
||||
|
||||
private String updateId; |
||||
|
||||
private String updateTime; |
||||
|
||||
private String arriveFlag; |
||||
|
||||
private String arriveTime; |
||||
|
||||
private String arriveUserId; |
||||
|
||||
private String flag; |
||||
|
||||
private String remark; |
||||
|
||||
private String version; |
||||
|
||||
private String transportWay; |
||||
|
||||
private String carriageMode; |
||||
|
||||
private String carrierName; |
||||
|
||||
private String carrierContacts; |
||||
|
||||
private String carrierMobile; |
||||
|
||||
private String carrierPhone; |
||||
|
||||
private String carNo; |
||||
|
||||
private String driverName; |
||||
|
||||
private String driverMobile; |
||||
|
||||
private String driverPhone; |
||||
|
||||
private String planBeginTime; |
||||
|
||||
private String realBeginTime; |
||||
|
||||
private String planEndTime; |
||||
|
||||
private String isEnable; |
||||
|
||||
private String arriveOrgId; |
||||
|
||||
private String arriveOrgName; |
||||
|
||||
private int isAlter; |
||||
|
||||
private String omsExtYsId; |
||||
|
||||
private String omsExtOrderNo; |
||||
|
||||
private String sendTime; |
||||
|
||||
private String manualContractNo; |
||||
|
||||
private String shopCode; |
||||
|
||||
private String shopName; |
||||
|
||||
private String deliveryMode; |
||||
|
||||
private String deliveryModeName; |
||||
|
||||
private String transportStatus; |
||||
|
||||
private String receiverName; |
||||
|
||||
private String requireRecvTime; |
||||
|
||||
private String yjOrderNo; |
||||
|
||||
private String yjUrgentDate; |
||||
|
||||
private String yjUrgentType; |
||||
|
||||
private String arrivalAdvice; |
||||
|
||||
private String arrivalAdviceName; |
||||
|
||||
private String arrivalAdviceTime; |
||||
|
||||
} |
@ -0,0 +1,236 @@
|
||||
package com.logpm.factory.jp.jobhandler; |
||||
|
||||
import cn.hutool.crypto.digest.DigestUtil; |
||||
import cn.hutool.http.HttpRequest; |
||||
import cn.hutool.http.HttpResponse; |
||||
import cn.hutool.http.HttpUtil; |
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.fasterxml.jackson.core.type.TypeReference; |
||||
import com.logpm.factory.jp.bean.*; |
||||
import com.logpm.factory.jp.entity.JinpaiArrivalOrderEntity; |
||||
import com.logpm.factory.jp.entity.JinpaiOrgIdEntity; |
||||
import com.logpm.factory.jp.entity.JinpaiPushScanLogEntity; |
||||
import com.logpm.factory.jp.service.IJinpaiArrivalOrderService; |
||||
import com.logpm.factory.jp.service.IJinpaiOrgIdService; |
||||
import com.logpm.factory.jp.service.IJinpaiPushScanLogService; |
||||
import com.logpm.factory.jp.util.JsonUtil; |
||||
import com.xxl.job.core.biz.model.ReturnT; |
||||
import com.xxl.job.core.handler.annotation.XxlJob; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.utils.CommonUtil; |
||||
import org.springblade.core.tool.utils.StringUtil; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.text.SimpleDateFormat; |
||||
import java.util.ArrayList; |
||||
import java.util.Calendar; |
||||
import java.util.List; |
||||
import java.util.Objects; |
||||
|
||||
@Slf4j |
||||
@AllArgsConstructor |
||||
@Component |
||||
public class PullJpDataJob { |
||||
|
||||
private final IJinpaiOrgIdService jinpaiOrgIdService; |
||||
private final IJinpaiArrivalOrderService jinpaiArrivalOrderService; |
||||
private final IJinpaiPushScanLogService jinpaiPushScanLogService; |
||||
|
||||
@XxlJob("pullJpData") |
||||
public ReturnT<String> pullJpData(String param) { |
||||
log.info("############pullJpData: 拉取金牌数据开始 param={}",param); |
||||
List<JinpaiOrgIdEntity> list = new ArrayList<>(); |
||||
if(StringUtil.isBlank(param)){ |
||||
list = jinpaiOrgIdService.list(); |
||||
}else{ |
||||
QueryWrapper<JinpaiOrgIdEntity> queryWrapper = new QueryWrapper<>(); |
||||
queryWrapper.eq("org_id",param); |
||||
JinpaiOrgIdEntity orgIdEntity = jinpaiOrgIdService.getOne(queryWrapper); |
||||
if(Objects.isNull(orgIdEntity)){ |
||||
log.warn("############pullJpData: 未查询到正确的key值"); |
||||
return ReturnT.FAIL; |
||||
} |
||||
list.add(orgIdEntity); |
||||
} |
||||
|
||||
try{ |
||||
|
||||
//获取昨天的日子
|
||||
Calendar cal = Calendar.getInstance(); |
||||
cal.add(Calendar.DATE, -1); |
||||
String yesterday = new SimpleDateFormat( "yyyy-MM-dd ").format(cal.getTime()); |
||||
log.info("############pullJpData: 同步{}的数据开始",yesterday); |
||||
|
||||
//登陆【登陆结果中有组织列表】
|
||||
LoginRes loginRes = login("17340091775", "ht88888888", "3369"); |
||||
|
||||
for (JinpaiOrgIdEntity entity:list){ |
||||
String key = entity.getOrgId(); |
||||
String name = entity.getOrgName(); |
||||
log.info("############pullJpData: 目前处理{}的数据",name); |
||||
//切换组织【组织切换后,loginRes单cookie会被覆盖】
|
||||
if(!"成都仓".equals(name)){ |
||||
swapOrga(loginRes, key); |
||||
} |
||||
int arrivePage = 1; |
||||
while(true){ |
||||
//查询DD单 arriver
|
||||
List<Tran> trans = arriveTrans(loginRes, arrivePage, yesterday,yesterday); |
||||
if(!Objects.isNull(trans) && trans.size() != 0){ |
||||
List<JinpaiArrivalOrderEntity> arrivalOrderEntities = new ArrayList<>(); |
||||
for (Tran tran:trans){ |
||||
String omsExtOrderNo = tran.getOmsExtOrderNo(); |
||||
log.info("############pullJpData: 目前处理{}的数据",omsExtOrderNo); |
||||
JinpaiArrivalOrderEntity jinpaiArrivalOrderEntity = new JinpaiArrivalOrderEntity(); |
||||
jinpaiArrivalOrderEntity.setWarehouseName(tran.getArriveOrgName()); |
||||
jinpaiArrivalOrderEntity.setYsNum(tran.getOmsExtYsId()); |
||||
jinpaiArrivalOrderEntity.setContractNumber(tran.getManualContractNo()); |
||||
jinpaiArrivalOrderEntity.setDdNum(tran.getOmsExtOrderNo()); |
||||
jinpaiArrivalOrderEntity.setDeliveryTime(StringUtil.isBlank(tran.getSendTime())?null:CommonUtil.StringToDate(tran.getSendTime())); |
||||
jinpaiArrivalOrderEntity.setServiceType(tran.getDeliveryModeName()); |
||||
jinpaiArrivalOrderEntity.setStore(tran.getShopName()); |
||||
jinpaiArrivalOrderEntity.setStoreCode(tran.getShopCode()); |
||||
jinpaiArrivalOrderEntity.setArrivalStatus(tran.getArriveFlag()); |
||||
jinpaiArrivalOrderEntity.setTotal(Integer.parseInt(tran.getGoodsNumber())); |
||||
jinpaiArrivalOrderEntity.setArrivalTime(StringUtil.isBlank(tran.getPlanEndTime())?null:CommonUtil.StringToDate(tran.getPlanEndTime())); |
||||
jinpaiArrivalOrderEntity.setAdministrators(tran.getArrivalAdviceName()); |
||||
jinpaiArrivalOrderEntity.setTruckNo(tran.getTransportId()); |
||||
jinpaiArrivalOrderEntity.setLoadingTime(StringUtil.isBlank(tran.getCreateTime())?null:CommonUtil.StringToDate(tran.getCreateTime())); |
||||
jinpaiArrivalOrderEntity.setActualArrivalTime(StringUtil.isBlank(tran.getArriveTime())?null:CommonUtil.StringToDate(tran.getArriveTime())); |
||||
jinpaiArrivalOrderEntity.setSource("3369"); |
||||
arrivalOrderEntities.add(jinpaiArrivalOrderEntity); |
||||
} |
||||
jinpaiArrivalOrderService.saveBatch(arrivalOrderEntities); |
||||
}else{ |
||||
break; |
||||
} |
||||
arrivePage++; |
||||
} |
||||
|
||||
//拉取推动数据
|
||||
int pushPage = 1; |
||||
while(true){ |
||||
//查询DD单 arriver
|
||||
List<PushScanLog> pushScanLogs = pushScanLog(loginRes, pushPage, yesterday,yesterday); |
||||
if(!Objects.isNull(pushScanLogs) && pushScanLogs.size() != 0){ |
||||
List<JinpaiPushScanLogEntity> pushScanLogEntities = new ArrayList<>(); |
||||
for (PushScanLog pushScanLog:pushScanLogs){ |
||||
String extBoxCode = pushScanLog.getExtBoxCode(); |
||||
log.info("############pullJpData: 目前处理推送{}的数据",extBoxCode); |
||||
JinpaiPushScanLogEntity jinpaiPushScanLogEntity = new JinpaiPushScanLogEntity(); |
||||
jinpaiPushScanLogEntity.setWarehouseName(pushScanLog.getOrgName()); |
||||
jinpaiPushScanLogEntity.setBatchNumber(pushScanLog.getReceivingBatchId()); |
||||
jinpaiPushScanLogEntity.setYsNum(pushScanLog.getOmsExtYsId()); |
||||
jinpaiPushScanLogEntity.setContractNumber(pushScanLog.getManualContractNo()); |
||||
jinpaiPushScanLogEntity.setDdNum(pushScanLog.getOmsExtOrderNo()); |
||||
jinpaiPushScanLogEntity.setUnitNo(pushScanLog.getExtBoxCode()); |
||||
jinpaiPushScanLogEntity.setInStatus(pushScanLog.getReceiptStatus()+""); |
||||
jinpaiPushScanLogEntity.setInType(pushScanLog.getReceiveType()); |
||||
jinpaiPushScanLogEntity.setDeliveryTime(StringUtil.isBlank(pushScanLog.getSendTime())?null:CommonUtil.StringToDate(pushScanLog.getSendTime())); |
||||
jinpaiPushScanLogEntity.setScanTime(StringUtil.isBlank(pushScanLog.getReceiptTime())?null:CommonUtil.StringToDate(pushScanLog.getReceiptTime())); |
||||
jinpaiPushScanLogEntity.setArrivalTime(StringUtil.isBlank(pushScanLog.getRealEndTime())?null:CommonUtil.StringToDate(pushScanLog.getRealEndTime())); |
||||
jinpaiPushScanLogEntity.setStore(pushScanLog.getShopName()); |
||||
jinpaiPushScanLogEntity.setStoreCode(pushScanLog.getShopCode()); |
||||
jinpaiPushScanLogEntity.setAdministrators(pushScanLog.getUpdateName()); |
||||
jinpaiPushScanLogEntity.setSource("3369"); |
||||
pushScanLogEntities.add(jinpaiPushScanLogEntity); |
||||
} |
||||
jinpaiPushScanLogService.saveBatch(pushScanLogEntities); |
||||
}else{ |
||||
break; |
||||
} |
||||
pushPage++; |
||||
} |
||||
} |
||||
}catch (Exception e){ |
||||
log.error("系统问题",e); |
||||
return ReturnT.FAIL; |
||||
} |
||||
return ReturnT.SUCCESS; |
||||
} |
||||
|
||||
|
||||
private LoginRes login(String account,String password,String syscode){ |
||||
HttpRequest httpRequest = HttpUtil.createPost("https://yjtms.yuanfusc.com/tms/system/loginIn.do"); |
||||
httpRequest.body("account="+account+"&password="+ DigestUtil.sha256Hex(password)+"&syscode="+syscode); |
||||
httpRequest.header("User-Agent","Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36"); |
||||
httpRequest.header("Referer","https://yjtms.yuanfusc.com/"); |
||||
HttpResponse httpResponse = httpRequest.execute(); |
||||
String cookie = httpResponse.header("Set-Cookie"); |
||||
ApiResponse<LoginRes> apiResponse = JsonUtil.toBean(httpResponse.bodyBytes(), new TypeReference<ApiResponse<LoginRes>>() { |
||||
}); |
||||
if (apiResponse.getCode() != 0)throw new RuntimeException(apiResponse.getMessage()); |
||||
apiResponse.getData().setCookie(cookie); |
||||
return apiResponse.getData(); |
||||
} |
||||
|
||||
|
||||
private List<Tran> arriveTrans(RCookie cookie, int page, String start, String end){ |
||||
HttpRequest httpRequest = HttpUtil.createGet("https://yjtms.yuanfusc.com/tms/transport/arriveTrans/list.do?page="+page+"&rows=500&condition=%7B%22arrivalAdvice%22%3A1%2C%22realBeginTimeStart%22%3A%22"+start+"%2000%3A00%3A00%22%2C%22realBeginTimeEnd%22%3A%22"+end+"%2023%3A59%3A59%22%7D&sort=yjUrgentType&order=asc"); |
||||
httpRequest.header("User-Agent","Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36"); |
||||
httpRequest.header("Referer","https://yjtms.yuanfusc.com/"); |
||||
httpRequest.cookie(cookie.getCookie()); |
||||
log.info("################arriveTrans: httpRequest={}",httpRequest); |
||||
HttpResponse httpResponse = httpRequest.execute(); |
||||
byte[] bytes = httpResponse.bodyBytes(); |
||||
if(Objects.isNull(bytes)){ |
||||
for (int i = 0; i < 3; i++) { |
||||
httpResponse = httpRequest.execute(); |
||||
byte[] b = httpResponse.bodyBytes(); |
||||
if(!Objects.isNull(b)){ |
||||
bytes = b; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
log.info("################arriveTrans: httpResponse={}",httpResponse); |
||||
ApiResponse<Tran> apiResponse = JsonUtil.toBean(bytes, new TypeReference<ApiResponse<Tran>>() { |
||||
}); |
||||
httpResponse.close(); |
||||
if (apiResponse.getCode() != 0)throw new RuntimeException(apiResponse.getMessage()); |
||||
return apiResponse.getRows(); |
||||
} |
||||
|
||||
private List<PushScanLog> pushScanLog(RCookie cookie, int page, String start, String end){ |
||||
HttpRequest httpRequest = HttpUtil.createGet("https://yjtms.yuanfusc.com/i-report/stockreceive/scanreceivelist.do?page="+page+"&rows=500&condition=%7B%22queryType%22%3A2%2C%22orgIds%22%3A%22fbb8dd984b164150aaac1694cce41f8f%22%2C%22receiptTimeBegin%22%3A%22"+start+"%2000%3A00%3A00%22%2C%22receiptTimeEnd%22%3A%22"+end+"%2023%3A59%3A59%22%7D"); |
||||
httpRequest.header("User-Agent","Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36"); |
||||
httpRequest.header("Referer","https://yjtms.yuanfusc.com/"); |
||||
httpRequest.cookie(cookie.getCookie()); |
||||
log.info("################pushScanLog: httpRequest={}",httpRequest); |
||||
HttpResponse httpResponse = httpRequest.execute(); |
||||
byte[] bytes = httpResponse.bodyBytes(); |
||||
if(Objects.isNull(bytes)){ |
||||
for (int i = 0; i < 3; i++) { |
||||
httpResponse = httpRequest.execute(); |
||||
byte[] b = httpResponse.bodyBytes(); |
||||
if(!Objects.isNull(b)){ |
||||
bytes = b; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
log.info("################pushScanLog: httpResponse={}",httpResponse); |
||||
ApiResponse<PushScanLog> apiResponse = JsonUtil.toBean(bytes, new TypeReference<ApiResponse<PushScanLog>>() { |
||||
}); |
||||
httpResponse.close(); |
||||
if (apiResponse.getCode() != 0)throw new RuntimeException(apiResponse.getMessage()); |
||||
return apiResponse.getRows(); |
||||
} |
||||
|
||||
|
||||
|
||||
private void swapOrga(RCookie cookie, String orgId){ |
||||
HttpRequest httpRequest = HttpUtil.createGet("https://yjtms.yuanfusc.com/tms/system/swapOrga.do?swapOrgaId="+orgId); |
||||
httpRequest.header("User-Agent","Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36"); |
||||
httpRequest.header("Referer","https://yjtms.yuanfusc.com/"); |
||||
httpRequest.cookie(cookie.getCookie()); |
||||
HttpResponse httpResponse = httpRequest.execute(); |
||||
ApiResponse<?> apiResponse = JsonUtil.toBean(httpResponse.bodyBytes(), new TypeReference<ApiResponse<?>>() { |
||||
}); |
||||
if (apiResponse.getCode() != 0)throw new RuntimeException(apiResponse.getMessage()); |
||||
cookie.setCookie(httpResponse.header("Set-Cookie")); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.factory.jp.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.factory.jp.entity.JinpaiArrivalOrderEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface JinpaiArrivalOrderMapper extends BaseMapper<JinpaiArrivalOrderEntity> { |
||||
} |
@ -0,0 +1,10 @@
|
||||
package com.logpm.factory.jp.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.factory.jp.entity.JinpaiOrgIdEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface JinpaiOrgIdMapper extends BaseMapper<JinpaiOrgIdEntity> { |
||||
|
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.factory.jp.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.factory.jp.entity.JinpaiPushScanLogEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface JinpaiPushScanLogMapper extends BaseMapper<JinpaiPushScanLogEntity> { |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.factory.jp.service; |
||||
|
||||
import com.logpm.factory.jp.entity.JinpaiArrivalOrderEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IJinpaiArrivalOrderService extends BaseService<JinpaiArrivalOrderEntity> { |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.factory.jp.service; |
||||
|
||||
import com.logpm.factory.jp.entity.JinpaiOrgIdEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IJinpaiOrgIdService extends BaseService<JinpaiOrgIdEntity> { |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.factory.jp.service; |
||||
|
||||
import com.logpm.factory.jp.entity.JinpaiPushScanLogEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IJinpaiPushScanLogService extends BaseService<JinpaiPushScanLogEntity> { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.factory.jp.service.impl; |
||||
|
||||
import com.logpm.factory.jp.entity.JinpaiArrivalOrderEntity; |
||||
import com.logpm.factory.jp.mapper.JinpaiArrivalOrderMapper; |
||||
import com.logpm.factory.jp.service.IJinpaiArrivalOrderService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Service |
||||
@AllArgsConstructor |
||||
@Slf4j |
||||
public class JinpaiArrivalOrderServiceImpl extends BaseServiceImpl<JinpaiArrivalOrderMapper, JinpaiArrivalOrderEntity> implements IJinpaiArrivalOrderService { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.factory.jp.service.impl; |
||||
|
||||
import com.logpm.factory.jp.entity.JinpaiOrgIdEntity; |
||||
import com.logpm.factory.jp.mapper.JinpaiOrgIdMapper; |
||||
import com.logpm.factory.jp.service.IJinpaiOrgIdService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Service |
||||
@AllArgsConstructor |
||||
@Slf4j |
||||
public class JinpaiOrgIdServiceImpl extends BaseServiceImpl<JinpaiOrgIdMapper, JinpaiOrgIdEntity> implements IJinpaiOrgIdService { |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.factory.jp.service.impl; |
||||
|
||||
import com.logpm.factory.jp.entity.JinpaiPushScanLogEntity; |
||||
import com.logpm.factory.jp.mapper.JinpaiPushScanLogMapper; |
||||
import com.logpm.factory.jp.service.IJinpaiPushScanLogService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Service |
||||
@AllArgsConstructor |
||||
@Slf4j |
||||
public class JinpaiPushScanLogServiceImpl extends BaseServiceImpl<JinpaiPushScanLogMapper, JinpaiPushScanLogEntity> implements IJinpaiPushScanLogService { |
||||
} |
@ -0,0 +1,63 @@
|
||||
package com.logpm.factory.jp.util; |
||||
|
||||
import com.fasterxml.jackson.core.JsonParser; |
||||
import com.fasterxml.jackson.core.JsonProcessingException; |
||||
import com.fasterxml.jackson.core.type.TypeReference; |
||||
import com.fasterxml.jackson.databind.ObjectMapper; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.exception.CustomerException; |
||||
|
||||
import java.io.IOException; |
||||
|
||||
@Slf4j |
||||
public class JsonUtil { |
||||
|
||||
private static final ObjectMapper objectMapper = new ObjectMapper(); |
||||
|
||||
static { |
||||
//允许单引号
|
||||
objectMapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true); |
||||
} |
||||
|
||||
public static <T> T toBean(byte[] bytes, Class<T> tClass) { |
||||
try { |
||||
return objectMapper.readValue(bytes, tClass); |
||||
} catch (IOException e) { |
||||
throw new CustomerException(500,"处理失败"); |
||||
} |
||||
} |
||||
|
||||
public static <T> T toBean(String bytes, Class<T> tClass) { |
||||
try { |
||||
return objectMapper.readValue(bytes, tClass); |
||||
} catch (IOException e) { |
||||
throw new CustomerException(500,"处理失败"); |
||||
} |
||||
} |
||||
|
||||
public static <T> T toBean(String bytes, TypeReference<T> valueTypeRef) { |
||||
try { |
||||
return objectMapper.readValue(bytes, valueTypeRef); |
||||
} catch (IOException e) { |
||||
throw new CustomerException(500,"处理失败"); |
||||
} |
||||
} |
||||
|
||||
public static <T> T toBean(byte[] bytes, TypeReference<T> valueTypeRef) { |
||||
try { |
||||
log.info("###############toBean: bytes={} valueTypeRef={}",bytes,valueTypeRef); |
||||
return objectMapper.readValue(bytes, valueTypeRef); |
||||
} catch (IOException e) { |
||||
throw new CustomerException(500,"处理失败"); |
||||
} |
||||
} |
||||
|
||||
public static String toString(Object obj) { |
||||
try { |
||||
return objectMapper.writeValueAsString(obj); |
||||
} catch (JsonProcessingException e) { |
||||
throw new CustomerException(500,"处理失败"); |
||||
} |
||||
} |
||||
|
||||
} |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue