|
@@ -124,7 +124,8 @@ public class PerformOrderServiceImpl implements IPerformOrderService {
|
|
|
return false;
|
|
|
}
|
|
|
PushCpResult pushCpResult = JsonUtil.toObj(resultStr, PushCpResult.class);
|
|
|
- boolean pushSuccess = Objects.equals(pushCpResult.getResult(), PushCpResult.SUCCESS_CODE);
|
|
|
+ boolean pushSuccess = Objects.equals(pushCpResult.getResult(), PushCpResult.SUCCESS_CODE)
|
|
|
+ || Objects.equals(pushCpResult.getCode(), PushCpResult.SUCCESS_CODE);
|
|
|
log.error("通知CP支付回调结果, url : {}, resultStr : {}, pushSuccess : {}", url, resultStr, pushSuccess);
|
|
|
//更新订单信息
|
|
|
orderService.update(new LambdaUpdateWrapper<Order>()
|