|
|
@ -5,31 +5,38 @@ import cn.hutool.core.util.IdUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson2.JSON;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
|
|
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.dao.inout.PlatformDao;
|
|
|
|
import com.glxp.api.dao.inout.*;
|
|
|
|
import com.glxp.api.dao.inout.UnitMaintainPlatformDao;
|
|
|
|
import com.glxp.api.entity.inout.*;
|
|
|
|
import com.glxp.api.entity.inout.UnitMaintainPlatformEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.system.PlatformEntity;
|
|
|
|
import com.glxp.api.entity.system.PlatformEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.idc.service.FileService;
|
|
|
|
import com.glxp.api.req.inout.PlatformLinkRequest;
|
|
|
|
import com.glxp.api.req.inout.PlatformLinkRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.res.inout.IoUploadOrderResponse;
|
|
|
|
import com.glxp.api.res.inout.PlatformLinkResponse;
|
|
|
|
import com.glxp.api.res.inout.PlatformLinkResponse;
|
|
|
|
import com.glxp.api.service.inout.PlatformService;
|
|
|
|
import com.glxp.api.service.inout.*;
|
|
|
|
import com.glxp.api.util.HttpClient;
|
|
|
|
|
|
|
|
import com.glxp.api.util.OkHttpCli;
|
|
|
|
import com.glxp.api.util.OkHttpCli;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
import okhttp3.*;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
|
|
|
import org.apache.tools.ant.util.DateUtils;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.io.File;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
@Slf4j
|
|
|
|
@Service
|
|
|
|
@Service
|
|
|
@ -42,6 +49,24 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
private UnitMaintainPlatformDao unitMaintainPlatformDao;
|
|
|
|
private UnitMaintainPlatformDao unitMaintainPlatformDao;
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
private OkHttpCli okHttpCli;
|
|
|
|
private OkHttpCli okHttpCli;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IoOrderService ioOrderService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IoOrderDetailCodeService ioOrderDetailCodeService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IoCodeTempService ioCodeTempService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IoOrderDetailBizDao ioOrderDetailBizDao;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IoOrderDetailResultDao ioOrderDetailResultDao;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
IoOrderInvoiceMapper ioOrderInvoiceMapper;
|
|
|
|
|
|
|
|
@Value("${file_path}")
|
|
|
|
|
|
|
|
private String filePath;
|
|
|
|
|
|
|
|
@Value("${API_KEY}")
|
|
|
|
|
|
|
|
private String apiKey;
|
|
|
|
|
|
|
|
@Value("${API_SECRET}")
|
|
|
|
|
|
|
|
private String apiSecret;
|
|
|
|
|
|
|
|
|
|
|
|
public int save(PlatformEntity platformEntity) {
|
|
|
|
public int save(PlatformEntity platformEntity) {
|
|
|
|
if (StringUtils.isEmpty(platformEntity.getId())) {
|
|
|
|
if (StringUtils.isEmpty(platformEntity.getId())) {
|
|
|
@ -125,7 +150,7 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
* @param platformId
|
|
|
|
* @param platformId
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public BaseResponse getTargetActions(String platformId, String invSubCode,String apiKey,String apiSecret) {
|
|
|
|
public BaseResponse getTargetActions(String platformId, String invSubCode, String apiKey, String apiSecret) {
|
|
|
|
PlatformEntity platformEntity = platformDao.get(platformId);
|
|
|
|
PlatformEntity platformEntity = platformDao.get(platformId);
|
|
|
|
if (null == platformEntity) {
|
|
|
|
if (null == platformEntity) {
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
return ResultVOUtils.success();
|
|
|
@ -133,7 +158,7 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
String host = platformEntity.getHost();
|
|
|
|
String host = platformEntity.getHost();
|
|
|
|
Map<String, String> paramMap = new HashMap<>();
|
|
|
|
Map<String, String> paramMap = new HashMap<>();
|
|
|
|
paramMap.put("invSubCode", invSubCode);
|
|
|
|
paramMap.put("invSubCode", invSubCode);
|
|
|
|
String resp = okHttpCli.doGet(host + "/udiwms/bussinessType/udimsFilter",paramMap,buildHeader(apiKey,apiSecret));
|
|
|
|
String resp = okHttpCli.doGet(host + "/udiwms/bussinessType/udimsFilter", paramMap, buildHeader(apiKey, apiSecret));
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -143,7 +168,7 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//获取自助平台一级仓库
|
|
|
|
//获取自助平台一级仓库
|
|
|
|
public BaseResponse getTargetInv(String platformId,String apiKey,String apiSecret) {
|
|
|
|
public BaseResponse getTargetInv(String platformId, String apiKey, String apiSecret) {
|
|
|
|
PlatformEntity platformEntity = platformDao.get(platformId);
|
|
|
|
PlatformEntity platformEntity = platformDao.get(platformId);
|
|
|
|
if (null == platformEntity) {
|
|
|
|
if (null == platformEntity) {
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
return ResultVOUtils.success();
|
|
|
@ -151,7 +176,7 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
String host = platformEntity.getHost();
|
|
|
|
String host = platformEntity.getHost();
|
|
|
|
String url = host + "/spms/inv/warehouse/filterInv/forUdims";
|
|
|
|
String url = host + "/spms/inv/warehouse/filterInv/forUdims";
|
|
|
|
log.info("拉取自助平台仓库数据:" + url);
|
|
|
|
log.info("拉取自助平台仓库数据:" + url);
|
|
|
|
String resp = okHttpCli.doGet(url,buildHeader(apiKey,apiSecret));
|
|
|
|
String resp = okHttpCli.doGet(url, buildHeader(apiKey, apiSecret));
|
|
|
|
log.info("拉取结果:" + resp);
|
|
|
|
log.info("拉取结果:" + resp);
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
@ -168,7 +193,7 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取自助平台一级仓库所属分库
|
|
|
|
//获取自助平台一级仓库所属分库
|
|
|
|
public BaseResponse getTargetSubInv(String platformId, String invCode,String apiKey,String apiSecret) {
|
|
|
|
public BaseResponse getTargetSubInv(String platformId, String invCode, String apiKey, String apiSecret) {
|
|
|
|
PlatformEntity platformEntity = platformDao.get(platformId);
|
|
|
|
PlatformEntity platformEntity = platformDao.get(platformId);
|
|
|
|
if (null == platformEntity) {
|
|
|
|
if (null == platformEntity) {
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
return ResultVOUtils.success();
|
|
|
@ -176,7 +201,7 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
String host = platformEntity.getHost();
|
|
|
|
String host = platformEntity.getHost();
|
|
|
|
Map<String, String> paramMap = new HashMap<>();
|
|
|
|
Map<String, String> paramMap = new HashMap<>();
|
|
|
|
paramMap.put("invCode", invCode);
|
|
|
|
paramMap.put("invCode", invCode);
|
|
|
|
String resp = okHttpCli.doGet(host + "/spms/sub/inv/warehouse/getSubInvForUdims",paramMap,buildHeader(apiKey,apiSecret));
|
|
|
|
String resp = okHttpCli.doGet(host + "/spms/sub/inv/warehouse/getSubInvForUdims", paramMap, buildHeader(apiKey, apiSecret));
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -284,8 +309,128 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
return unitMaintainPlatformDao.selectDelectList(platformLinkRequest.getPlatformId());
|
|
|
|
return unitMaintainPlatformDao.selectDelectList(platformLinkRequest.getPlatformId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String[] buildHeader(String apiKey,String apiSecret) {
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public BaseResponse uploadOrder(String orderId) throws JsonProcessingException {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询单据信息
|
|
|
|
|
|
|
|
IoOrderEntity ioOrderEntity = ioOrderService.findByBillNo(orderId);
|
|
|
|
|
|
|
|
if (ioOrderEntity == null) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(999, "该单据不存在!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//查询客户关联信息
|
|
|
|
|
|
|
|
PlatformLinkResponse platformLinkRespons = unitMaintainPlatformDao.selectByUnitld(ioOrderEntity.getFromCorp());
|
|
|
|
|
|
|
|
if(platformLinkRespons == null){
|
|
|
|
|
|
|
|
return ResultVOUtils.error(999, "该单没有设置补单条件!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//获取单据详情
|
|
|
|
|
|
|
|
List<IoOrderDetailCodeEntity> ioOrderDetailCodeEntityList=ioOrderDetailCodeService.findByOrderId(orderId);
|
|
|
|
|
|
|
|
List<IoCodeTempEntity> ioCodeTempEntityList = ioCodeTempService.findByOrderId(orderId);
|
|
|
|
|
|
|
|
for (IoCodeTempEntity ioCodeTempEntity : ioCodeTempEntityList) {
|
|
|
|
|
|
|
|
Map<String, String> jsonMap = new HashMap<>();
|
|
|
|
|
|
|
|
jsonMap.put("code", ioCodeTempEntity.getCode());
|
|
|
|
|
|
|
|
ObjectMapper mapper = new ObjectMapper();
|
|
|
|
|
|
|
|
String json = mapper.writeValueAsString(jsonMap);
|
|
|
|
|
|
|
|
ioCodeTempEntity.setCode(json);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//获取业务单
|
|
|
|
|
|
|
|
QueryWrapper<IoOrderDetailBizEntity> ew=new QueryWrapper<>();
|
|
|
|
|
|
|
|
ew.eq("orderIdFk",orderId);
|
|
|
|
|
|
|
|
List<IoOrderDetailBizEntity> ioOrderDetailBizEntityList=ioOrderDetailBizDao.selectList(ew);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取结果单
|
|
|
|
|
|
|
|
QueryWrapper<IoOrderDetailResultEntity> ew1=new QueryWrapper<>();
|
|
|
|
|
|
|
|
ew1.eq("orderIdFk",orderId);
|
|
|
|
|
|
|
|
List<IoOrderDetailResultEntity> ioOrderDetailResultEntityList=ioOrderDetailResultDao.selectList(ew1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取发票
|
|
|
|
|
|
|
|
QueryWrapper<IoOrderInvoiceEntity> ew2=new QueryWrapper<>();
|
|
|
|
|
|
|
|
ew2.eq("orderIdFk",orderId);
|
|
|
|
|
|
|
|
List<IoOrderInvoiceEntity> ioOrderInvoiceEntityList=ioOrderInvoiceMapper.selectList(ew2);
|
|
|
|
|
|
|
|
ArrayList<String> list=new ArrayList<>();
|
|
|
|
|
|
|
|
for (IoOrderInvoiceEntity ioOrderInvoiceEntity : ioOrderInvoiceEntityList) {
|
|
|
|
|
|
|
|
if(StrUtil.isNotBlank(ioOrderInvoiceEntity.getLicenseUrl())){
|
|
|
|
|
|
|
|
list.add(filePath + "/register/image2/" + ioOrderInvoiceEntity.getLicenseUrl());
|
|
|
|
|
|
|
|
ioOrderInvoiceEntity.setLicenseUrl("as" + ioOrderInvoiceEntity.getLicenseUrl());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
relayFile(list,platformLinkRespons.getHost());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//组装数据
|
|
|
|
|
|
|
|
String host = platformLinkRespons.getHost();
|
|
|
|
|
|
|
|
IoUploadOrderResponse ioUploadOrderResponse=new IoUploadOrderResponse();
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setIoOrderEntity(ioOrderEntity);
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setPlatformLinkRespons(platformLinkRespons);
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setIoCodeTempEntityList(ioCodeTempEntityList);
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setIoOrderDetailCodeEntityList(ioOrderDetailCodeEntityList);
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setIoOrderDetailResultEntityList(ioOrderDetailResultEntityList);
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setIoOrderDetailBizEntityList(ioOrderDetailBizEntityList);
|
|
|
|
|
|
|
|
ioUploadOrderResponse.setIoOrderInvoiceEntityList(ioOrderInvoiceEntityList);
|
|
|
|
|
|
|
|
String resp = okHttpCli.doPostJson(host + "/spms/sub/inv/warehouse/addOrder",
|
|
|
|
|
|
|
|
JSON.toJSONString(ioUploadOrderResponse), buildHeader(platformLinkRespons.getAppid(), platformLinkRespons.getSecretKey()));
|
|
|
|
|
|
|
|
//回调结果 返回信息
|
|
|
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
log.error("获取自助平台分库失败");
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "获取自助平台接口异常");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String[] buildHeader(String apiKey, String apiSecret) {
|
|
|
|
String[] headers = {"api_key", apiKey, "secret_key", apiSecret};
|
|
|
|
String[] headers = {"api_key", apiKey, "secret_key", apiSecret};
|
|
|
|
return headers;
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*转发图片*/
|
|
|
|
|
|
|
|
private String relayFile(ArrayList<String> files, String ip) {
|
|
|
|
|
|
|
|
String host = ip;
|
|
|
|
|
|
|
|
String result = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!StringUtils.isEmpty(host)) {
|
|
|
|
|
|
|
|
host += "/udiwms/file/uploadFile";
|
|
|
|
|
|
|
|
OkHttpClient client = new OkHttpClient().newBuilder()
|
|
|
|
|
|
|
|
.connectTimeout(30, TimeUnit.SECONDS)//设置连接超时时间
|
|
|
|
|
|
|
|
.readTimeout(30, TimeUnit.SECONDS)//设置读取超时时间
|
|
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MultipartBody.Builder builder = new MultipartBody.Builder();
|
|
|
|
|
|
|
|
builder.setType(MultipartBody.FORM);
|
|
|
|
|
|
|
|
String fileType = "application/octet-stream";
|
|
|
|
|
|
|
|
if (files != null && files.size() > 0) {
|
|
|
|
|
|
|
|
for (int i = 0; i < files.size(); i++) {
|
|
|
|
|
|
|
|
if (!StringUtils.isEmpty(files.get(i))) {
|
|
|
|
|
|
|
|
File file = new File(files.get(i));
|
|
|
|
|
|
|
|
String fileName = files.get(i);
|
|
|
|
|
|
|
|
fileName = "as"+ fileName.substring(fileName.lastIndexOf("/")+1);
|
|
|
|
|
|
|
|
builder.addFormDataPart("files", fileName,
|
|
|
|
|
|
|
|
RequestBody.create(MediaType.parse(fileType), file));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RequestBody body = builder.build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Request req = new Request.Builder()
|
|
|
|
|
|
|
|
.url(host)
|
|
|
|
|
|
|
|
.method("POST", body)
|
|
|
|
|
|
|
|
.addHeader("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
|
|
|
|
.addHeader("format", "json")
|
|
|
|
|
|
|
|
.addHeader("apiKey", apiKey)
|
|
|
|
|
|
|
|
.addHeader("secretKey", apiSecret)
|
|
|
|
|
|
|
|
.addHeader("timestamp", DateUtils.format(new Date(), "yyyy-MM-dd HH:mm:ss"))
|
|
|
|
|
|
|
|
.addHeader("Access-Control-Allow-Headers", "Authorization, Origin, X-Requested-With, Content-Type, Accept")
|
|
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
Response response = client.newCall(req).execute();
|
|
|
|
|
|
|
|
result = response.body().string();
|
|
|
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
|
|
|
// TODO Auto-generated catch block
|
|
|
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|