|
|
|
@ -7,6 +7,7 @@ import cn.hutool.http.HttpUtil;
|
|
|
|
|
import cn.hutool.json.JSONArray; |
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.logpm.factorydata.olo.pros.OldProperties; |
|
|
|
|
import com.logpm.factorydata.olo.service.DeliveryNoteService; |
|
|
|
|
import com.logpm.factorydata.olo.vo.DeliveryNoteVO; |
|
|
|
|
import com.xxl.job.core.biz.model.ReturnT; |
|
|
|
@ -30,6 +31,7 @@ import java.util.stream.Collectors;
|
|
|
|
|
public class PullOrderDataJob { |
|
|
|
|
|
|
|
|
|
private final DeliveryNoteService deliveryNoteService; |
|
|
|
|
private final OldProperties oldProperties; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 定时获取老系统数据 |
|
|
|
@ -46,16 +48,14 @@ public class PullOrderDataJob {
|
|
|
|
|
} else { |
|
|
|
|
oldParam.put("date", DateUtil.today()); |
|
|
|
|
} |
|
|
|
|
String s = HttpUtil.get("http://twms.huitongys.com/openApi/new-system/wole-data", oldParam); |
|
|
|
|
log.info("请求返回==》 {}", s); |
|
|
|
|
if(StrUtil.isNotEmpty(s)){ |
|
|
|
|
String s = HttpUtil.get(oldProperties.getPullOrderUrl(), oldParam); |
|
|
|
|
if (StrUtil.isNotEmpty(s)) { |
|
|
|
|
JSONObject entries = JSONUtil.parseObj(s); |
|
|
|
|
JSONArray data = entries.getJSONArray("data"); |
|
|
|
|
List<DeliveryNoteVO> vos = data.stream().map(p -> BeanUtil.toBean(p, DeliveryNoteVO.class)).collect(Collectors.toList()); |
|
|
|
|
log.info("vos==>{}",JSONUtil.toJsonStr(vos)); |
|
|
|
|
String res = ""; |
|
|
|
|
try { |
|
|
|
|
// res = deliveryNoteService.order(vos);
|
|
|
|
|
log.info("拉取老系统订单数:{}", vos.size()); |
|
|
|
|
deliveryNoteService.order(vos); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("工厂订单异常:{} ", e); |
|
|
|
|
} |
|
|
|
|