Commit 49c5bb31 by ping.wu

Merge branches 'feature/20220622_退款失败记录到订单_wuping' and 'pre' of…

Merge branches 'feature/20220622_退款失败记录到订单_wuping' and 'pre' of http://gitlab.freemud.com/order-group-application/order-group into feature/20220622_退款失败记录到订单_wuping
parents ed597807 b140bf83
......@@ -522,7 +522,7 @@ public class OrderAdapterServiceImpl {
request.setMiniAppId(orderBean.getAppId());
response = ecologyProgramApplicationClient.reportActivityBehaviors(request);
if (!Objects.equals(response.getCode(), "100")) {
if(Objects.equals(response.getMessage(), "用户未参加或已退出该活动")){//用户未报名活动的过滤掉
if(!Objects.equals(response.getMessage(), "用户未参加或已退出该活动")){//用户未报名活动的过滤掉
emailAlertService.sendEmailAlert("低碳活动上报失败", String.format("request:%s \r\nresponse:%s \r\norderNo:%s", JSONObject.toJSONString(request), JSONObject.toJSONString(response), orderBean.getOid()));
}
ApiLog.printLog("sendLowCarbonToWeixin error "+orderBean.getOid(), message,request,response);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment