‘linchangsheng’ 5 meses atrás
pai
commit
352752e2cf

+ 13 - 0
mall-miniapp-service/src/main/java/com/gree/mall/miniapp/controller/order/OrderController.java

@@ -96,6 +96,19 @@ public class OrderController {
         return ResponseHelper.success(buy);
     }
 
+
+    @PostMapping("/buytest")
+    @ApiOperation("立即购买")
+    public ResponseHelper<PayDetail> buytest(
+            @ApiParam(value = "支付人用户id",required = false) @RequestParam(required = false) String orderId,
+            @ApiParam(value = "订单id",required = true) @RequestParam BigDecimal amount,
+            HttpServletRequest request
+    ) throws Exception {
+
+        PayDetail buy = orderLogic.buytest(orderId,amount ,request);
+        return ResponseHelper.success(buy);
+    }
+
     @PostMapping("/wait/pay")
     @ApiOperation("支付待支付订单")
     public ResponseHelper<PayDetail> waitPayOrder(

Diferenças do arquivo suprimidas por serem muito extensas
+ 187 - 184
mall-miniapp-service/src/main/java/com/gree/mall/miniapp/logic/order/OrderLogic.java


+ 3 - 1
mall-server-api/src/main/java/com/gree/mall/manager/logic/comlist/ComListLogic.java

@@ -332,9 +332,11 @@ public class ComListLogic {
 //                        log.error("上传文件失败",e);
 //                    }
                 //});
+
+                String ossUrl = ossUtil.getAccessUrl() + filePath;
                 Map<String, Object> mp = new HashMap<>();
                 mp.put("websitNumber", websitNumber);
-                mp.put("filePath", filePath);
+                mp.put("filePath", ossUrl);
                 fileUrls.add(mp);
             }
             log.info("【中心下发文件3】" + DateUtils.formatDate(new Date()));

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff