xiaoyong931011
2022-08-26 ab5b2fc056eedd8cb42bfcfb428aee642eb0b3a9
src/main/java/cc/mrbird/febs/mall/service/impl/ApiMallOrderInfoServiceImpl.java
@@ -342,8 +342,9 @@
                }else{
                    JSONObject jsonObject = JSONUtil.parseObj(agreementSignStr);
                    payResultStr = (String) jsonObject.get("biz_code");
                    String signBizMsg = (String) jsonObject.get("biz_msg");
                    if("JS000000" != payResultStr){
                        throw new FebsException("支付失败");
                        throw new FebsException(signBizMsg);
                    }
                }
                
@@ -369,8 +370,9 @@
                }else{
                    JSONObject jsonObject = JSONUtil.parseObj(agreementPayStr);
                    payResultStr = (String) jsonObject.get("biz_code");
                    String payBizMsg = (String) jsonObject.get("biz_msg");
                    if(!"JS000000".equals(payResultStr)){
                        throw new FebsException("支付失败");
                        throw new FebsException(payBizMsg);
                    }
                }
                orderInfo.setPayMethod("快捷协议支付");