|
|
|
@ -7,24 +7,64 @@ import cn.hutool.http.HttpUtil;
|
|
|
|
|
import cn.hutool.json.JSONArray; |
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.logpm.factorydata.suofeiya.entity.DeliveryNoteEntity; |
|
|
|
|
import com.logpm.factorydata.suofeiya.entity.OrderInfoEntity; |
|
|
|
|
import com.logpm.factorydata.suofeiya.entity.PackageInfoEntity; |
|
|
|
|
import com.logpm.factorydata.suofeiya.entity.SpiderInforEntity; |
|
|
|
|
import com.logpm.factorydata.suofeiya.mapper.DeliveryNoteMapper; |
|
|
|
|
import com.logpm.factorydata.suofeiya.mapper.OrderInfoMapper; |
|
|
|
|
import com.logpm.factorydata.suofeiya.mapper.PackageInfoMapper; |
|
|
|
|
import com.logpm.factorydata.suofeiya.mapper.SpiderInforMapper; |
|
|
|
|
import com.logpm.factorydata.suofeiya.service.DeliveryNoteService; |
|
|
|
|
import com.logpm.factorydata.suofeiya.service.IAsyncService; |
|
|
|
|
import com.logpm.factorydata.suofeiya.vo.DeliveryNoteVO; |
|
|
|
|
import com.logpm.factorydata.suofeiya.vo.OrderInfoVO; |
|
|
|
|
import com.logpm.factorydata.suofeiya.vo.PackageInfoVO; |
|
|
|
|
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.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
|
|
import java.net.HttpCookie; |
|
|
|
|
import java.time.LocalDate; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.concurrent.Executor; |
|
|
|
|
import java.util.concurrent.LinkedBlockingQueue; |
|
|
|
|
import java.util.concurrent.ThreadPoolExecutor; |
|
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
|
|
|
|
|
|
@Component |
|
|
|
|
@Slf4j |
|
|
|
|
public class SpiderDataJob { |
|
|
|
|
|
|
|
|
|
private Map<String,String> map = new HashMap<>(); |
|
|
|
|
private Map<String, String> map = new HashMap<>(); |
|
|
|
|
|
|
|
|
|
private String startData = "2025-02-18"; |
|
|
|
|
private String endData = "2025-02-19"; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private SpiderInforMapper spiderInforMapper; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private DeliveryNoteMapper deliveryNoteMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private OrderInfoMapper orderInfoMapper; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private PackageInfoMapper packageInfoMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private DeliveryNoteService deliveryNoteService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private Executor asyncChangeDbExecutor; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -37,55 +77,118 @@ public class SpiderDataJob {
|
|
|
|
|
@XxlJob("factoryCarsData") |
|
|
|
|
public ReturnT<String> factoryCarsData(String param) throws Exception { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// String date =LocalDate.now().toString();
|
|
|
|
|
startData =LocalDate.now().toString(); |
|
|
|
|
endData = LocalDate.now().minusDays(1).toString(); |
|
|
|
|
//
|
|
|
|
|
// String yesterday = LocalDate.now().minusDays(1).toString();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// // 获取当前日期
|
|
|
|
|
// String date = DateUtil.today();
|
|
|
|
|
// // 获取当前日期的前一天的日期
|
|
|
|
|
// String yesterday = DateUtil.offsetDay(DateUtil.parse(date), -1)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long _dc_ = System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/loadingHeader/all?_dc=" + _dc_ + "&page=1&start=0&limit=100&" + |
|
|
|
|
"filtersRaw=[{\"id\":null,\"property\":\"A.DEAL_DATE\",\"value\":\"" + "2025-01-18" + "\",\"operator\":\">=\",\"sql\":null}," + |
|
|
|
|
"{\"id\":null,\"property\":\"A.DEAL_DATE\",\"value\":\""+"2025-01-19"+"\",\"operator\":\"<\",\"sql\":null}]"; |
|
|
|
|
System.out.println(url); |
|
|
|
|
|
|
|
|
|
Map<String, String> heads = new HashMap<>(); |
|
|
|
|
heads.put("Content-Type", "application/json;charset=UTF-8"); |
|
|
|
|
heads.put("Cookie", buildCookies()); |
|
|
|
|
HttpRequest get = HttpUtil.createGet(url).addHeaders(heads); |
|
|
|
|
HttpResponse execute = get.setReadTimeout(10000).execute(); |
|
|
|
|
String body = execute.body(); |
|
|
|
|
// startData ="2025-02-25";
|
|
|
|
|
// endData = "2025-02-27";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 获取需要处理的账号表
|
|
|
|
|
QueryWrapper queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("status", 1); |
|
|
|
|
List<SpiderInforEntity> list = spiderInforMapper.selectList(queryWrapper); |
|
|
|
|
|
|
|
|
|
for (SpiderInforEntity spiderInforEntity : list) { |
|
|
|
|
// 读取获取的账号
|
|
|
|
|
Long _dc_ = System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/loadingHeader/all?_dc=" + _dc_ + "&page=1&start=0&limit=100&" + |
|
|
|
|
"filtersRaw=[{\"id\":null,\"property\":\"A.DEAL_DATE\",\"value\":\"" + startData + "\",\"operator\":\">=\",\"sql\":null}," + |
|
|
|
|
"{\"id\":null,\"property\":\"A.DEAL_DATE\",\"value\":\"" + endData + "\",\"operator\":\"<\",\"sql\":null}]"; |
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = getData(url, buildCookies(spiderInforEntity.getUserAccount(), spiderInforEntity.getUserPasswd())); |
|
|
|
|
JSONArray jsonArray = jsonObject.getJSONArray("result"); |
|
|
|
|
|
|
|
|
|
for (Object o : jsonArray) { |
|
|
|
|
JSONObject jsonObject1 = (JSONObject) o; |
|
|
|
|
DeliveryNoteVO vo = new DeliveryNoteVO(); |
|
|
|
|
DeliveryNoteEntity deliveryNoteEntity = saveDeliveyData(spiderInforEntity, jsonObject1); |
|
|
|
|
|
|
|
|
|
BeanUtil.copy(deliveryNoteEntity, vo); |
|
|
|
|
vo.setCarrierNo(spiderInforEntity.getCarrierNo()); |
|
|
|
|
|
|
|
|
|
if(deliveryNoteEntity != null){ |
|
|
|
|
// 得到车次下的订单
|
|
|
|
|
List<OrderInfoVO> orderInfo =new ArrayList<>(); |
|
|
|
|
List<PackageInfoVO> packageInfoVOs =new ArrayList<>(); |
|
|
|
|
JSONArray orders = getCarOrders(jsonObject1.getStr("deliveryHeaderId"), spiderInforEntity.getUserAccount(), spiderInforEntity.getUserPasswd()); |
|
|
|
|
for (Object o1 : orders) { |
|
|
|
|
JSONObject jsonObject2 = (JSONObject) o1; |
|
|
|
|
// 保存订单数据
|
|
|
|
|
String orderNumber = jsonObject2.getStr("orderNumber"); |
|
|
|
|
|
|
|
|
|
String customName = jsonObject2.getStr("customName"); |
|
|
|
|
|
|
|
|
|
OrderInfoEntity orderInfoEntity = new OrderInfoEntity(); |
|
|
|
|
orderInfoEntity.setOrderNo(orderNumber); |
|
|
|
|
orderInfoEntity.setOrderFull(orderNumber); |
|
|
|
|
orderInfoEntity.setReceiver(customName); |
|
|
|
|
orderInfoEntity.setConnectName(customName); |
|
|
|
|
orderInfoEntity.setTenantCode(spiderInforEntity.getBindTenantCode()); |
|
|
|
|
orderInfoEntity.setDeliveryNoteId(deliveryNoteEntity.getId().toString()); |
|
|
|
|
orderInfoEntity.setCreateTime(new Date()); |
|
|
|
|
orderInfoEntity.setUpdateTime(new Date()); |
|
|
|
|
orderInfoEntity.setIsDeleted(0); |
|
|
|
|
orderInfoEntity.setStatus(1); |
|
|
|
|
|
|
|
|
|
// 判断订单在数据库是否已经存在 如果不存在 插入到数据库中
|
|
|
|
|
if(orderInfoMapper.selectCount(new QueryWrapper<OrderInfoEntity>().eq("order_no", orderNumber)) == 0){ |
|
|
|
|
orderInfoMapper.insert(orderInfoEntity); |
|
|
|
|
OrderInfoVO orderInfoVo = new OrderInfoVO(); |
|
|
|
|
BeanUtil.copy(orderInfoEntity, orderInfoVo); |
|
|
|
|
orderInfo.add(orderInfoVo); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 得到订单下的包条信息
|
|
|
|
|
JSONArray orderInfor = getOrderPackages(orderNumber, spiderInforEntity.getUserAccount(), spiderInforEntity.getUserPasswd()); |
|
|
|
|
|
|
|
|
|
for (Object object : orderInfor) { |
|
|
|
|
JSONObject jsonObject3 = (JSONObject) object; |
|
|
|
|
|
|
|
|
|
String packageNumber = jsonObject3.getStr("tagNumber"); |
|
|
|
|
String packType = jsonObject3.getStr("packType"); |
|
|
|
|
String volume = jsonObject3.getStr("volume"); |
|
|
|
|
String weight = jsonObject3.getStr("weight"); |
|
|
|
|
|
|
|
|
|
PackageInfoEntity packageInfoEntity = new PackageInfoEntity(); |
|
|
|
|
packageInfoEntity.setDeliveryNoteId(deliveryNoteEntity.getId().toString()); |
|
|
|
|
packageInfoEntity.setPaNo(packageNumber); |
|
|
|
|
packageInfoEntity.setOrderType(jsonObject1.getStr("orderType")); |
|
|
|
|
packageInfoEntity.setPlDepart(packType); |
|
|
|
|
packageInfoEntity.setVolume(volume); |
|
|
|
|
packageInfoEntity.setWeight(weight); |
|
|
|
|
packageInfoEntity.setTenantCode(spiderInforEntity.getBindTenantCode()); |
|
|
|
|
packageInfoEntity.setOrderNo(orderNumber); |
|
|
|
|
packageInfoEntity.setCreateTime(new Date()); |
|
|
|
|
packageInfoEntity.setUpdateTime(new Date()); |
|
|
|
|
packageInfoEntity.setIsDeleted(0); |
|
|
|
|
packageInfoEntity.setStatus(1); |
|
|
|
|
|
|
|
|
|
// 判断这个包条是否存在鱼数据库 如果不存在 则执行
|
|
|
|
|
if(StringUtil.isNotBlank(packageNumber) &&packageInfoMapper.selectCount(new QueryWrapper<PackageInfoEntity>().eq("pa_no", packageNumber)) == 0){ |
|
|
|
|
packageInfoMapper.insert(packageInfoEntity); |
|
|
|
|
|
|
|
|
|
PackageInfoVO packageInfoVO = new PackageInfoVO(); |
|
|
|
|
BeanUtil.copy(packageInfoEntity, packageInfoVO); |
|
|
|
|
|
|
|
|
|
packageInfoVOs.add(packageInfoVO); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
vo.setOrderInfo(orderInfo); |
|
|
|
|
vo.setPackageInfo(packageInfoVOs); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject(body); |
|
|
|
|
JSONArray jsonArray = jsonObject.getJSONArray("result"); |
|
|
|
|
|
|
|
|
|
for (Object o : jsonArray) { |
|
|
|
|
JSONObject jsonObject1 = (JSONObject) o; |
|
|
|
|
System.out.println("车次"+jsonObject1); |
|
|
|
|
// 得到车次下的订单
|
|
|
|
|
JSONArray orders = getCarOrders(jsonObject1.getStr("deliveryHeaderId")); |
|
|
|
|
System.out.println("订单"+orders); |
|
|
|
|
// // 得到订单下的包条信息
|
|
|
|
|
// for (Object o1 : orders) {
|
|
|
|
|
// JSONObject jsonObject2 = (JSONObject) o1;
|
|
|
|
|
// System.out.println("订单"+jsonObject2);
|
|
|
|
|
// // 得到订单下的包条信息
|
|
|
|
|
// JSONArray orderInfor = getOrderPackages(jsonObject2.getStr("orderNumber"));
|
|
|
|
|
// System.out.println("包件"+orderInfor);
|
|
|
|
|
// }
|
|
|
|
|
asyncChangeDbExecutor.execute(new ChdbTask(spiderInforEntity.getBindTenantCode(), vo,deliveryNoteService)); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* { |
|
|
|
|
* "total": 10000, |
|
|
|
@ -192,43 +295,32 @@ public class SpiderDataJob {
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) throws Exception { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SpiderDataJob s = new SpiderDataJob(); |
|
|
|
|
s.factoryCarsData(""); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Long s = System.currentTimeMillis();
|
|
|
|
|
// System.out.println(s);
|
|
|
|
|
// System.out.println(s / 1000);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// String url = "https://portal.sfygroup.com/reporthome/rest/loadingHeader/all?_dc=1739871711195&page=1&start=0&limit=100&filtersRaw=[{\"id\":null,\"property\":\"A.DEAL_DATE\",\"value\":\"2025-02-11\",\"operator\":\">=\",\"sql\":null},{\"id\":null,\"property\":\"A.DEAL_DATE\",\"value\":\"2025-02-19\",\"operator\":\"<\",\"sql\":null}]";
|
|
|
|
|
//// // 发起http请求 获取返回的数据 走get请求
|
|
|
|
|
////
|
|
|
|
|
////
|
|
|
|
|
////
|
|
|
|
|
// Map<String, String> heads = new HashMap<>();
|
|
|
|
|
// heads.put("Content-Type", "application/json;charset=UTF-8");
|
|
|
|
|
//// heads.put("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36");
|
|
|
|
|
//// heads.put("Host", "portal.sfygroup.com");
|
|
|
|
|
//// heads.put("Accept", "*/*");
|
|
|
|
|
//
|
|
|
|
|
// heads.put("Cookie", init());
|
|
|
|
|
//// heads.put("Referer", "http://portal.sfygroup.com/reporthome/rest/reporthome/reporthomeUI?username=18166360906&password=02a962f8b9dfdbe85ee37b3f9b99fd8fcb48e73a65c9009e92ab81c508dcdca261af7efc1644002d0f371e5001c30a8f&menuType=loadingheader/loadingheader.jsp");
|
|
|
|
|
// HttpRequest get = HttpUtil.createGet(url).addHeaders(heads);
|
|
|
|
|
//// String s = HttpUtil.get(url);
|
|
|
|
|
//// System.out.println(s);
|
|
|
|
|
//
|
|
|
|
|
// HttpResponse execute = get.setReadTimeout(10000).execute();
|
|
|
|
|
// String body = execute.body();
|
|
|
|
|
// System.out.println(body);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// init();
|
|
|
|
|
|
|
|
|
|
private DeliveryNoteEntity saveDeliveyData(SpiderInforEntity spiderInforEntity, JSONObject jsonObject1) { |
|
|
|
|
// 获取车次数据
|
|
|
|
|
// 装车单号
|
|
|
|
|
String deliveryNumber = jsonObject1.getStr("deliveryNumber"); |
|
|
|
|
// 车牌号
|
|
|
|
|
String customerNumber = jsonObject1.getStr("customerNumber"); |
|
|
|
|
|
|
|
|
|
DeliveryNoteEntity deliveryNoteEntity = new DeliveryNoteEntity(); |
|
|
|
|
deliveryNoteEntity.setLogisticID(deliveryNumber); |
|
|
|
|
deliveryNoteEntity.setTruckNo(customerNumber); |
|
|
|
|
deliveryNoteEntity.setTenantCode(spiderInforEntity.getBindTenantCode()); |
|
|
|
|
deliveryNoteEntity.setSupplierName(spiderInforEntity.getBindBussiness()); |
|
|
|
|
deliveryNoteEntity.setCreateTime(new Date()); |
|
|
|
|
deliveryNoteEntity.setUpdateTime(new Date()); |
|
|
|
|
deliveryNoteEntity.setIsDeleted(0); |
|
|
|
|
deliveryNoteEntity.setStatus(1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 判断车次数据是否在表已存在
|
|
|
|
|
DeliveryNoteEntity deliveryNoteEntity1 = deliveryNoteMapper.selectOne(new QueryWrapper<DeliveryNoteEntity>().eq("logistic_id", deliveryNumber).eq("tenant_code", spiderInforEntity.getBindTenantCode())); |
|
|
|
|
if (deliveryNoteEntity1 == null) { |
|
|
|
|
// 不存在 则插入数据库
|
|
|
|
|
deliveryNoteMapper.insert(deliveryNoteEntity); |
|
|
|
|
return deliveryNoteEntity; |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -237,22 +329,51 @@ public class SpiderDataJob {
|
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private String buildCookies() { |
|
|
|
|
String o = map.get("cookie"); |
|
|
|
|
if(StringUtil.isBlank(o)){ |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/reporthome/reporthomeUI?username=18166360906&password=02a962f8b9dfdbe85ee37b3f9b99fd8fcb48e73a65c9009e92ab81c508dcdca261af7efc1644002d0f371e5001c30a8f&menuType=loadingheader/loadingheader.jsp"; |
|
|
|
|
private String buildCookies(String username, String password) { |
|
|
|
|
String o = map.get("cookie"); |
|
|
|
|
if (StringUtil.isBlank(o)) { |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/reporthome/reporthomeUI?username=" + username + "&password=" + password + "&menuType=loadingheader/loadingheader.jsp"; |
|
|
|
|
HttpRequest get = HttpUtil.createGet(url); |
|
|
|
|
HttpResponse execute = get.execute(); |
|
|
|
|
String cookie = execute.getCookieStr(); |
|
|
|
|
map.put("cookie", cookie); |
|
|
|
|
o=cookie; |
|
|
|
|
o = cookie; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return o; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String buildCookiesByZx(String username, String password) { |
|
|
|
|
String o = map.get("Zx_cookie"); |
|
|
|
|
if (StringUtil.isBlank(o)) { |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/reporthome/reporthomeUI?username=" + username + "&password=" + password + "&menuType=orderpack/OrderPack.jsp"; |
|
|
|
|
HttpRequest get = HttpUtil.createGet(url); |
|
|
|
|
HttpResponse execute = get.execute(); |
|
|
|
|
String cookie = execute.getCookieStr(); |
|
|
|
|
map.put("Zx_cookie", cookie); |
|
|
|
|
o = cookie; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return o; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String buildCookiesByDD(String username, String password) { |
|
|
|
|
String o = map.get("DD_cookie"); |
|
|
|
|
if (StringUtil.isBlank(o)) { |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/reporthome/reporthomeUI?username=" + username + "&password=" + password + "&menuType=delivedryNotice/DelivedryNotice.jsp"; |
|
|
|
|
HttpRequest get = HttpUtil.createGet(url); |
|
|
|
|
HttpResponse execute = get.execute(); |
|
|
|
|
String cookie = execute.getCookieStr(); |
|
|
|
|
map.put("DD_cookie", cookie); |
|
|
|
|
o = cookie; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return o; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 通过车次获取下面的订单 |
|
|
|
|
* {"total":10000,"result": |
|
|
|
@ -264,41 +385,56 @@ public class SpiderDataJob {
|
|
|
|
|
* @param id |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private JSONArray getCarOrders(String id) { |
|
|
|
|
private JSONArray getCarOrders(String id, String username, String password) { |
|
|
|
|
|
|
|
|
|
// 输出这个方法执行的时间
|
|
|
|
|
long start =System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
JSONArray result = new JSONArray(); |
|
|
|
|
Long _dc_ = System.currentTimeMillis(); |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/loadingLine/all?_dc=" + _dc_ + "&page=1&start=0&limit=10&filtersRaw=[{\"id\":\"headFilter\",\"property\":\"A.DELIVERY_HEADER_ID\",\"value\":\"" + id + "\",\"operator\":\"=\",\"sql\":null}]"; |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/loadingLine/all?_dc=" + _dc_ + "&page=1&start=0&limit=1000&filtersRaw=[{\"id\":\"headFilter\",\"property\":\"A.DELIVERY_HEADER_ID\",\"value\":\"" + id + "\",\"operator\":\"=\",\"sql\":null}]"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = getData(url); |
|
|
|
|
JSONObject jsonObject = getData(url, buildCookies(username, password)); |
|
|
|
|
|
|
|
|
|
JSONArray temList = jsonObject.getJSONArray("result"); |
|
|
|
|
for (Object o : temList) { |
|
|
|
|
JSONObject jsonObject1 = (JSONObject) o; |
|
|
|
|
JSONObject list2 = getOrderInfor(jsonObject1.getStr("orderNumber"), username, password); |
|
|
|
|
|
|
|
|
|
result.add(getOrderInfor(jsonObject1.getStr("orderNumber"))); |
|
|
|
|
JSONArray list_2 = list2.getJSONArray("result"); |
|
|
|
|
for (Object o1 : list_2) { |
|
|
|
|
JSONObject t = (JSONObject) o1; |
|
|
|
|
result.add(t); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
log.info("getCarOrders 执行时间:{}", System.currentTimeMillis()-start); |
|
|
|
|
return result; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private JSONObject getOrderInfor(String orderCode) { |
|
|
|
|
Long _dc_ = System.currentTimeMillis(); |
|
|
|
|
String url = "https://portal.sfygroup.com/portal/rest/sogalOrder/all?_dc="+_dc_+"&isSlave=true&methodName=orderQuery&maskPhone=true&page=1&start=0&limit=10&filtersRaw=[{\"id\":\"queryorderinfoFormorderNumberFilter\",\"property\":\"orderNumber\",\"value\":\""+orderCode+"\",\"operator\":\"=\",\"sql\":null}]"; |
|
|
|
|
// JSONObject jsonObject= getData(url);
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* {"total":10000,"result":[{"id":null,"createdBy":null, |
|
|
|
|
* "created":null,"lastUpdated":null,"lastUpdatedBy":null,"rowVersion":0,"tableName":null,"orderNumber":"P3516012400366-1Y", |
|
|
|
|
* "orderType":"备货单","scheduleDeliveryDate":"2025-02-18 00:00:00","depart":"川橱烤漆内委(1.0),川内委石材(1.0)", |
|
|
|
|
* "weight":0.0,"volume":0.003,"quantity":2,"bfComments":null,"customerNumber":"P35160","sequences":12,"orderBrandCode":"1","orderBrand":"索菲亚品牌", |
|
|
|
|
* "ydOrderNumber":"P3516012400366-1Y","customerName":"陈娟","productOrgName":"OU_成都索菲亚"}],"success":true} |
|
|
|
|
* |
|
|
|
|
* @param orderCode |
|
|
|
|
* @param username |
|
|
|
|
* @param password |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
Map<String, String> heads = new HashMap<>(); |
|
|
|
|
heads.put("Content-Type", "application/json;charset=UTF-8"); |
|
|
|
|
heads.put("Cookie", buildBussiesCookies()); |
|
|
|
|
heads.put("Referer", "https://portal.sfygroup.com/portal/views/home.jsp"); |
|
|
|
|
HttpRequest get = HttpUtil.createGet(url).addHeaders(heads); |
|
|
|
|
HttpResponse execute = get.setReadTimeout(10000).execute(); |
|
|
|
|
String body = execute.body(); |
|
|
|
|
JSONObject jsonObject = JSONUtil.parseObj(body); |
|
|
|
|
private JSONObject getOrderInfor(String orderCode, String username, String password) { |
|
|
|
|
Long _dc_ = System.currentTimeMillis(); |
|
|
|
|
// String url = "https://portal.sfygroup.com/reporthome/rest/delivedryNotice/all?_dc=" + _dc_ + "&page=1&start=0&limit=1000&filtersRaw=" +
|
|
|
|
|
// "[{\"id\":null,\"property\":\"A.ORDER_NUMBER\",\"value\":" + orderCode + ",\"operator\":\"=\",\"sql\":null}]";
|
|
|
|
|
|
|
|
|
|
String url ="https://portal.sfygroup.com/reporthome/rest/delivedryNotice/all?_dc="+_dc_+"&page=1&start=0&limit=20&filtersRaw=[{\"id\":null,\"property\":\"A.SCHEDULE_DELIVERY_DATE\",\"value\":\""+startData+"\",\"operator\":\">=\",\"sql\":null},{\"id\":null,\"property\":\"A.SCHEDULE_DELIVERY_DATE\",\"value\":\""+endData+"\",\"operator\":\"<\",\"sql\":null},{\"id\":null,\"property\":\"A.ORDER_NUMBER\",\"value\":\""+orderCode+"\",\"operator\":\"like\",\"sql\":null}]"; |
|
|
|
|
JSONObject jsonObject = getData(url, buildCookiesByDD(username, password)); |
|
|
|
|
return jsonObject; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -321,16 +457,15 @@ public class SpiderDataJob {
|
|
|
|
|
for (HttpCookie cookie : cookies) { |
|
|
|
|
if (cookie.getName().equals("JSESSIONID")) { |
|
|
|
|
|
|
|
|
|
if(cookie.getValue().contains(".")){ |
|
|
|
|
s=cookie.getValue().substring(0,cookie.getValue().indexOf(".")); |
|
|
|
|
if (cookie.getValue().contains(".")) { |
|
|
|
|
s = cookie.getValue().substring(0, cookie.getValue().indexOf(".")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
s="JSESSIONID="+s+";username=18166360906;JSESSIONID="+s; |
|
|
|
|
s = "JSESSIONID=" + s + ";username=18166360906;JSESSIONID=" + s; |
|
|
|
|
map.put("buss_cookie", s); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -338,24 +473,27 @@ public class SpiderDataJob {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private JSONArray getOrderPackages(String orderCode) { |
|
|
|
|
private JSONArray getOrderPackages(String orderCode, String username, String password) { |
|
|
|
|
|
|
|
|
|
JSONArray response = new JSONArray(); |
|
|
|
|
//获取订单对应的装箱单
|
|
|
|
|
Long _dc_ = System.currentTimeMillis(); |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/orderPackHeader/all?_dc="+_dc_+"&page=1&start=0&limit=10000&filtersRaw=[{\"id\":\"headFilter\",\"property\":\"A.OE_HEADER_ID\",\"value\":\""+orderCode+"\",\"operator\":\"=\",\"sql\":null}]"; |
|
|
|
|
String url = "https://portal.sfygroup.com/reporthome/rest/orderPackHead/all?_dc=" + _dc_ + "&page=1&start=0&limit=1000&filtersRaw=[{\"id\":null,\"property\":\"A.ORDER_NUMBER\",\"value\":\"" + orderCode + "\",\"operator\":\"=\",\"sql\":null},{\"id\":null,\"property\":\"A.SCHEDULE_DELIVERY_DATE\",\"value\":\"" + startData + "\",\"operator\":\">=\",\"sql\":null},{\"id\":null,\"property\":\"A.SCHEDULE_DELIVERY_DATE\",\"value\":\"" + endData + "\",\"operator\":\"<\",\"sql\":null}]"; |
|
|
|
|
/** |
|
|
|
|
* {"total":10000,"result":[{"id":null,"createdBy":null,"created":null,"lastUpdated":null,"lastUpdatedBy":null,"rowVersion":0,"tableName":"SG_ORG_BALANCE","orderNumber":"P3516012400306-60", |
|
|
|
|
* "sourceOrderNumber":"P3516012400306-60","orderType":"CD_外部图纸单","deliveryDate":"2025-02-18 00:00:00", |
|
|
|
|
* "quotationDate":"2024-12-27 12:14:26","oeHeaderId":45757470,"organizationId":"141","customerNumber":"P351688","orderBrandCode":"1","orderBrand":"索菲亚品牌"}],"success":true} |
|
|
|
|
*/ |
|
|
|
|
JSONObject data = getData(url); |
|
|
|
|
JSONObject data = getData(url, buildCookiesByZx(username, password)); |
|
|
|
|
JSONArray tempList = data.getJSONArray("result"); |
|
|
|
|
for (Object o : tempList) { |
|
|
|
|
JSONObject jsonObject = (JSONObject) o; |
|
|
|
|
String oeHeaderId = jsonObject.getStr("oeHeaderId"); |
|
|
|
|
url = "https://portal.sfygroup.com/reporthome/rest/orderPackLine/all?_dc="+_dc_+"&page=1&start=0&limit=10000&filtersRaw=[{\"id\":\"headFilter\",\"property\":\"A.OE_HEADER_ID\",\"value\":"+oeHeaderId+",\"operator\":\"=\",\"sql\":null}]"; |
|
|
|
|
JSONObject data1 = getData(url); |
|
|
|
|
// url = "https://portal.sfygroup.com/reporthome/rest/orderPackLine/all?_dc=" + _dc_ + "&page=1&start=0&limit=10000&filtersRaw=[{\"id\":\"headFilter\",\"property\":\"A.OE_HEADER_ID\",\"value\":" + oeHeaderId + ",\"operator\":\"=\",\"sql\":null}]";
|
|
|
|
|
|
|
|
|
|
url ="https://portal.sfygroup.com/reporthome/rest/orderPackLine/all?_dc="+_dc_+"&page=1&start=0&limit=10000&filtersRaw=[{\"id\":\"headFilter\",\"property\":\"A.OE_HEADER_ID\",\"value\":\""+oeHeaderId+"\",\"operator\":\"=\",\"sql\":null}]"; |
|
|
|
|
|
|
|
|
|
JSONObject data1 = getData(url, buildCookiesByZx(username, password)); |
|
|
|
|
/** |
|
|
|
|
* id null |
|
|
|
|
* createdBy null |
|
|
|
@ -384,30 +522,31 @@ public class SpiderDataJob {
|
|
|
|
|
*/ |
|
|
|
|
// 获取列表
|
|
|
|
|
JSONArray result = data1.getJSONArray("result"); |
|
|
|
|
response.addAll(result); |
|
|
|
|
response.addAll(result); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return response; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private JSONObject getData(String url) { |
|
|
|
|
private JSONObject getData(String url, String cookie) { |
|
|
|
|
Long start = System.currentTimeMillis(); |
|
|
|
|
Map<String, String> heads = new HashMap<>(); |
|
|
|
|
heads.put("Content-Type", "application/json;charset=UTF-8"); |
|
|
|
|
heads.put("Cookie", buildCookies()); |
|
|
|
|
heads.put("Cookie", cookie); |
|
|
|
|
HttpRequest get = HttpUtil.createGet(url).addHeaders(heads); |
|
|
|
|
HttpResponse execute = get.setReadTimeout(10000).execute(); |
|
|
|
|
HttpResponse execute = get.setConnectionTimeout(5000).setReadTimeout(3000).execute(); |
|
|
|
|
String body = execute.body(); |
|
|
|
|
JSONObject jsonObject = JSONUtil.parseObj(body); |
|
|
|
|
log.info("getData 执行时间:{}", System.currentTimeMillis()-start); |
|
|
|
|
|
|
|
|
|
return jsonObject; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|