Browse Source

fix 订单复购

he2802 3 years ago
parent
commit
4cbb1407f4

+ 1 - 1
zhongzheng-admin/src/main/java/com/zhongzheng/controller/order/OrderGoodsController.java

@@ -83,7 +83,7 @@ public class OrderGoodsController extends BaseController {
     @PreAuthorize("@ss.hasPermi('system:goods:query')")
     @GetMapping("/rebuyInfo")
     public AjaxResult<OrderGoodsVo> rebuyInfo(OrderGoodsQueryBo bo) {
-        return AjaxResult.success(iOrderGoodsService.selectDetail(bo));
+        return AjaxResult.success(iOrderGoodsService.rebuyInfo(bo));
     }
 
     /**