From 365af808539413d618747e8e1fb6ed35d153064d Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 09 八月 2024 11:26:01 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/mx_charging_pile --- ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/TExchangeOrderController.java | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 53 insertions(+), 7 deletions(-) diff --git a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/TExchangeOrderController.java b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/TExchangeOrderController.java index 446c350..840f928 100644 --- a/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/TExchangeOrderController.java +++ b/ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/controller/TExchangeOrderController.java @@ -3,6 +3,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.ruoyi.common.core.domain.R; +import com.ruoyi.order.api.model.TChargingOrder; import com.ruoyi.order.api.model.TExchangeOrder; import com.ruoyi.order.api.model.TShoppingOrder; import com.ruoyi.order.service.TExchangeOrderService; @@ -12,9 +13,11 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; /** @@ -33,12 +36,19 @@ private TShoppingOrderService tShoppingOrderService; @Autowired private TExchangeOrderService exchangeOrderService; + + //订单详情 + @PostMapping(value = "/detail") + public R<TExchangeOrder> detail(@RequestParam Long orderId) { + return R.ok(exchangeOrderService.getById(orderId)); + } + /** * 管理后台 根据商品ids 查询对应的销量 - * @param goodsIds + * @param goodsIds 订单号-商品类型 * @return */ - @PostMapping("/t-exchange-order/getSalesCountByGoodsIds") + @PostMapping("/getSalesCountByGoodsIds") public R<List<Integer>> getSalesCountByGoodsId(String goodsIds){ String[] split = goodsIds.split("-"); // 取出最后一位字符 类型1查询现金购买 类型2查询积分兑换 @@ -47,13 +57,11 @@ switch (Integer.parseInt(s)){ case 1: for (int i = 0; i < split.length-1; i++) { - Integer reduce = tShoppingOrderService.list(new QueryWrapper<TShoppingOrder>() .eq("goods_id", split[i]) .eq("payment_status", 2) .ne("refund_status", 2)) .stream().map(TShoppingOrder::getPurchaseQuantity).reduce(0, Integer::sum); - res.add(reduce); } break; @@ -63,14 +71,52 @@ .eq("goods_id", split[i]) ) .stream().map(TExchangeOrder::getPurchaseQuantity).reduce(0, Integer::sum); - res.add(reduce); } break; } - - return R.ok(res); } + /** + * 管理后台 根据t_app_coupon订单ids查询优惠券的订单编号 + * @param goodsIds 订单号-商品类型 + * @return + */ + @PostMapping("/getCodeByOrderId") + public R<List<String>> getCodeByOrderId(String goodsIds){ + String[] split = goodsIds.split("-"); + List<String> strings = new ArrayList<>(); + for (String s : split) { + if (s.contains("-")){ + // 带有负号的是积分兑换的订单 + TExchangeOrder one = exchangeOrderService.getOne(new QueryWrapper<TExchangeOrder>() + .eq("order_type", 2) + .eq("id", s.replace("-",""))); + if (one != null){ + strings.add(one.getCode()); + }else{ + strings.add(""); + } + }else{ + TShoppingOrder one = tShoppingOrderService.getOne(new QueryWrapper<TShoppingOrder>() + .eq("order_type", 2) + .eq("id", s)); + if (one != null){ + strings.add(one.getCode()); + }else{ + strings.add(""); + } + } + + } + + return R.ok(strings); + } + /** + * 管理后台 根据t_app_coupon订单ids查询积分兑换优惠券的订单编号 + * @param goodsIds 订单号-商品类型 + * @return + */ + } -- Gitblit v1.7.1