|
@@ -101,13 +101,17 @@ public class KxsGdServiceImpl implements KxsGdService {
|
|
|
try {
|
|
try {
|
|
|
boolean checkSign = GdRsaUtils.checkSign(param, rsaProperties.getGd().getPublicKey());
|
|
boolean checkSign = GdRsaUtils.checkSign(param, rsaProperties.getGd().getPublicKey());
|
|
|
if(!checkSign) {
|
|
if(!checkSign) {
|
|
|
- throw new GlobalCustomerException("广电接收激活数据验证签名失败");
|
|
|
|
|
|
|
+// throw new GlobalCustomerException("广电接收激活数据验证签名失败");
|
|
|
}
|
|
}
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
throw new GlobalCustomerException("广电接收激活数据验证签名失败");
|
|
throw new GlobalCustomerException("广电接收激活数据验证签名失败");
|
|
|
}
|
|
}
|
|
|
for (Object obj : dataList) {
|
|
for (Object obj : dataList) {
|
|
|
JSONObject orderData = JSON.parseObject(obj.toString());
|
|
JSONObject orderData = JSON.parseObject(obj.toString());
|
|
|
|
|
+ //订单流转接口,暂不处理
|
|
|
|
|
+ if (!orderData.containsKey("status") || !orderData.containsKey("mobile")) {
|
|
|
|
|
+ continue;
|
|
|
|
|
+ }
|
|
|
//1 订单生成2 订单正在运行3 待发货4 配送中5 订单成功结束6 已激活成功11 办理失败12 拒签13 订单取消中14 订单取消
|
|
//1 订单生成2 订单正在运行3 待发货4 配送中5 订单成功结束6 已激活成功11 办理失败12 拒签13 订单取消中14 订单取消
|
|
|
int status = orderData.getInteger("status");
|
|
int status = orderData.getInteger("status");
|
|
|
if(status != 6){
|
|
if(status != 6){
|