Commit 826e558f by rui.zhu

生产问题debug

parent 81f93bb8
...@@ -32,6 +32,7 @@ import com.freemud.application.sdk.api.ordercenter.service.OrderSdkService; ...@@ -32,6 +32,7 @@ import com.freemud.application.sdk.api.ordercenter.service.OrderSdkService;
import com.freemud.application.sdk.api.ordercenter.util.LogUtil; import com.freemud.application.sdk.api.ordercenter.util.LogUtil;
import com.freemud.application.sdk.api.util.ResponseUtils; import com.freemud.application.sdk.api.util.ResponseUtils;
import com.freemud.sdk.api.assortment.order.enums.PayRefundStatus; import com.freemud.sdk.api.assortment.order.enums.PayRefundStatus;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang.ObjectUtils; import org.apache.commons.lang.ObjectUtils;
import org.apache.commons.lang.StringUtils; import org.apache.commons.lang.StringUtils;
...@@ -55,6 +56,7 @@ import java.util.*; ...@@ -55,6 +56,7 @@ import java.util.*;
* 注意:本内容仅限于上海非码科技内部传阅,禁止外泄以及用于其他的商业目 * 注意:本内容仅限于上海非码科技内部传阅,禁止外泄以及用于其他的商业目
*/ */
@Component @Component
@Slf4j
public class PaymentHandle { public class PaymentHandle {
private static final String SUCCESS = "100"; private static final String SUCCESS = "100";
...@@ -118,6 +120,7 @@ public class PaymentHandle { ...@@ -118,6 +120,7 @@ public class PaymentHandle {
refundResponse.setResult(result); refundResponse.setResult(result);
return refundResponse; return refundResponse;
} catch (Exception e) { } catch (Exception e) {
log.error("getCommonPayRefundResponse error", e);
refundResponse = new PayRefundResponse(); refundResponse = new PayRefundResponse();
refundResponse.setPayRefundStatus(PayRefundStatus.COMPATIBILITY_STATUS); refundResponse.setPayRefundStatus(PayRefundStatus.COMPATIBILITY_STATUS);
refundResponse.setMessage("请稍后再试!"); refundResponse.setMessage("请稍后再试!");
......
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