|
|
|
@ -43,6 +43,7 @@ import com.glxp.mipsdl.req.ptxhyy.PtxhyyOrderDetailRequest;
|
|
|
|
|
import com.glxp.mipsdl.req.ptxhyy.PtxhyyOrderRequest;
|
|
|
|
|
import com.glxp.mipsdl.res.BaseResponse;
|
|
|
|
|
import com.glxp.mipsdl.service.auth.AuthWarehouseService;
|
|
|
|
|
import com.glxp.mipsdl.service.order.OrderUploadLogService;
|
|
|
|
|
import com.glxp.mipsdl.service.thrsys.ThrCorpService;
|
|
|
|
|
import com.glxp.mipsdl.service.thrsys.ThrSystemDetailService;
|
|
|
|
|
import com.glxp.mipsdl.util.DateUtil;
|
|
|
|
@ -96,7 +97,9 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
//查询对应的第三方单据类型
|
|
|
|
|
ThrSystemBusApiEntity thrSystemBusApiEntity = thrSystemBusApiDao.selectOne(new LambdaQueryWrapper<ThrSystemBusApiEntity>().eq(ThrSystemBusApiEntity::getCode, udiwmsOrderRequest.getBillType()));
|
|
|
|
|
if (StrUtil.isBlank(thrSystemBusApiEntity.getUrl())) {
|
|
|
|
|
return ResultVOUtils.error(500, "接口未配置,无法提交!");
|
|
|
|
|
String errMsg = "接口未配置,无法提交!";
|
|
|
|
|
updateLocalErr(orderEntity, errMsg);
|
|
|
|
|
return ResultVOUtils.error(500, errMsg);
|
|
|
|
|
}
|
|
|
|
|
udiwmsOrderRequest.setBillType(thrSystemBusApiEntity.getThirdBuyCode());
|
|
|
|
|
//查询单据类型,设置往来单位信息
|
|
|
|
@ -116,6 +119,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setCorpName(basicCorpEntity.getName());
|
|
|
|
|
} else {
|
|
|
|
|
String msg = "查询单据对应的第三方往来单位信息异常";
|
|
|
|
|
updateLocalErr(orderEntity, msg);
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + msg);
|
|
|
|
|
return ResultVOUtils.error(500, msg);
|
|
|
|
|
}
|
|
|
|
@ -131,6 +135,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setCorpName(thrInvWarehouseEntity.getName());
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
String msg = "查询单据对应往来单位的第三方仓库信息异常";
|
|
|
|
|
updateLocalErr(orderEntity, msg);
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + msg + ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
return ResultVOUtils.error(500, msg);
|
|
|
|
|
}
|
|
|
|
@ -144,6 +149,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setCorpName(basicCorpEntity.getName());
|
|
|
|
|
} else {
|
|
|
|
|
String msg = "查询单据对应的第三方往来单位信息异常";
|
|
|
|
|
updateLocalErr(orderEntity, msg);
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + msg);
|
|
|
|
|
return ResultVOUtils.error(500, msg);
|
|
|
|
|
}
|
|
|
|
@ -160,7 +166,8 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setLocInvName(thrInvWarehouseEntitys.get(0).getName());
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.info("查询第三方系统仓库信息异常", ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
log.error("查询第三方系统仓库信息异常", ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
updateLocalErr(orderEntity, "查询第三方系统仓库信息异常" + ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
return ResultVOUtils.error(500, "查询第三方系统仓库信息异常");
|
|
|
|
|
}
|
|
|
|
|
udiwmsOrderRequest.setBillFlag("1");
|
|
|
|
@ -195,6 +202,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
try {
|
|
|
|
|
userName = getUserName(orderEntity);
|
|
|
|
|
if (StrUtil.isEmpty(userName)) {
|
|
|
|
|
updateLocalErr(orderEntity, "该单据无创建人!");
|
|
|
|
|
return ResultVOUtils.error(500, "该单据无创建人!");
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
@ -220,6 +228,8 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
ptxhyyOrderRequest.setDetailList(new ArrayList<>());
|
|
|
|
|
String errMs = setOrderDetailList(ioCodeEntities, items, detailBizEntities);
|
|
|
|
|
if (errMs != null) {
|
|
|
|
|
updateLocalErr(orderEntity, errMs);
|
|
|
|
|
log.error(errMs);
|
|
|
|
|
return ResultVOUtils.error(500, errMs);
|
|
|
|
|
}
|
|
|
|
|
Collections.reverse(items);
|
|
|
|
@ -273,6 +283,25 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
return submitOrder(orderEntity, ptxhyyOrderRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 本地提交错误
|
|
|
|
|
*
|
|
|
|
|
* @param orderEntity
|
|
|
|
|
* @param errMsg
|
|
|
|
|
*/
|
|
|
|
|
public void updateLocalErr(IoOrderEntity orderEntity, String errMsg) {
|
|
|
|
|
IoOrderUploadLogEntity uploadLog = new IoOrderUploadLogEntity();
|
|
|
|
|
uploadLog.setBillDate(orderEntity.getCreateTime());
|
|
|
|
|
uploadLog.setBillType(orderEntity.getAction());
|
|
|
|
|
uploadLog.setSubmitTime(new Date());
|
|
|
|
|
uploadLog.setBillNo(orderEntity.getBillNo());
|
|
|
|
|
uploadLog.setFromType(Constants.THIRD_ORDER_UPLOAD);
|
|
|
|
|
orderDao.updateById(orderEntity);
|
|
|
|
|
uploadLog.setStatus(4);
|
|
|
|
|
uploadLog.setResult("单据数据异常:" + errMsg);
|
|
|
|
|
orderUploadLogService.insertOrUpdate(uploadLog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 封装单据详情参数
|
|
|
|
|
*
|
|
|
|
@ -303,6 +332,8 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
private ThrSystemDetailService thrSystemDetailService;
|
|
|
|
|
@Resource
|
|
|
|
|
private IoOrderUploadLogDao orderUploadLogDao;
|
|
|
|
|
@Resource
|
|
|
|
|
private OrderUploadLogService orderUploadLogService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getUserName(IoOrderEntity orderEntity) {
|
|
|
|
@ -361,14 +392,14 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
uploadLog.setThrBillNo(thirdBillNo);
|
|
|
|
|
uploadLog.setResult("提交成功");
|
|
|
|
|
orderDao.updateById(orderEntity);
|
|
|
|
|
orderUploadLogDao.insert(uploadLog);
|
|
|
|
|
orderUploadLogService.insertOrUpdate(uploadLog);
|
|
|
|
|
return ResultVOUtils.success("提交成功");
|
|
|
|
|
}
|
|
|
|
|
orderEntity.setExportStatus(2); //上传失败
|
|
|
|
|
orderDao.updateById(orderEntity);
|
|
|
|
|
uploadLog.setStatus(3);
|
|
|
|
|
uploadLog.setResult("提交失败,错误信息:" + baseResponse.getMessage());
|
|
|
|
|
orderUploadLogDao.insert(uploadLog);
|
|
|
|
|
orderUploadLogService.insertOrUpdate(uploadLog);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("解析提交单据返回结果异常,结果信息:{}", response);
|
|
|
|
@ -377,7 +408,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
uploadLog.setResult("提交失败,错误信息:" + response);
|
|
|
|
|
orderEntity.setExportStatus(2); //上传失败
|
|
|
|
|
orderDao.updateById(orderEntity);
|
|
|
|
|
orderUploadLogDao.insert(uploadLog);
|
|
|
|
|
orderUploadLogService.insertOrUpdate(uploadLog);
|
|
|
|
|
return ResultVOUtils.error(500, "提交失败");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
@ -385,7 +416,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
uploadLog.setResult("提交失败,调用接口返回为空");
|
|
|
|
|
orderEntity.setExportStatus(2); //上传失败
|
|
|
|
|
orderDao.updateById(orderEntity);
|
|
|
|
|
orderUploadLogDao.insert(uploadLog);
|
|
|
|
|
orderUploadLogService.insertOrUpdate(uploadLog);
|
|
|
|
|
return ResultVOUtils.error(500, "提交失败");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|