From bd97f8c5cd9be78abfaaab295319bd7ceef98f11 Mon Sep 17 00:00:00 2001
From: luodangjia <luodangjia>
Date: 星期五, 11 十月 2024 14:51:51 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserController.java |   49 ++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 46 insertions(+), 3 deletions(-)

diff --git a/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserController.java b/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserController.java
index 71175d4..839c11a 100644
--- a/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserController.java
+++ b/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserController.java
@@ -36,6 +36,7 @@
 import com.ruoyi.order.api.model.TChargingOrder;
 import com.ruoyi.order.api.model.TExchangeOrder;
 import com.ruoyi.other.api.domain.*;
+import com.ruoyi.other.api.domain.TCoupon;
 import com.ruoyi.other.api.dto.UnitListQueryDto;
 import com.ruoyi.other.api.feignClient.IntegralRuleClient;
 import com.ruoyi.other.api.feignClient.OtherClient;
@@ -228,6 +229,7 @@
                 .eq(userListQueryDto.getStatus() != null, TAppUser::getStatus, userListQueryDto.getStatus())
                 .eq(userListQueryDto.getVipTypeId() != null, TAppUser::getVipId, userListQueryDto.getVipTypeId())
                 .in(!userIds.isEmpty(),TAppUser::getId,userIds)
+                .orderByDesc(BasePojo::getCreateTime)
                 .page(Page.of(userListQueryDto.getPageCurr(), userListQueryDto.getPageSize()));
         if (page.getRecords().isEmpty()){
             return R.ok(page);
@@ -496,7 +498,7 @@
         for (TAppUserIntegralChange record : page.getRecords()) {
             record.setDateTime(record.getCreateTime());
             record.setUid(record.getId().toString());
-            if (record.getChangeType()==2){
+            if (record.getChangeType()==2||record.getChangeType()==3){
                 R<TChargingOrder> tChargingOrderR = chargingOrderClient.orderDetail(Long.valueOf(record.getExtension()));
                 if (tChargingOrderR.getData()!=null) {
                     record.setOrderNum(tChargingOrderR.getData().getCode());
@@ -518,6 +520,10 @@
     @GetMapping(value = "/user/points/detail")
     public R<TAppUserIntegralChange> pointsDetail(String id) {
         TAppUserIntegralChange byId = integralChangeService.getById(id);
+        TExchangeOrder data = exchangeOrderClient.orderDetail(Long.valueOf(byId.getExtension())).getData();
+        if (data!=null) {
+            byId.setGoodType(data.getOrderType());
+        }
         return R.ok(byId);
     }
 
@@ -573,6 +579,14 @@
         }else {
             appUserInfoDto.setIsVip(1);
             appUserInfoDto.setVipExpireTime(byId.getVipEndTime());
+
+
+
+
+
+
+
+
         }
         //判断当天是否签到
         Long count = signService.lambdaQuery().eq(TAppUserSign::getAppUserId,userId).eq(TAppUserSign::getSignDay, LocalDate.now()).count();
@@ -588,8 +602,26 @@
         appUserInfoDto.setUserCars(list);
         appUserInfoDto.setFirstAdd(byId.getFirstAdd()!=null?byId.getFirstAdd():0);
         appUserInfoDto.setPoints(byId.getPoints()==null?0:byId.getPoints());
+
+
+
+
+
         return R.ok(appUserInfoDto);
 
+
+    }
+
+
+    @ApiOperation(value = "设置头像", tags = {"小程序-个人中心"})
+    @GetMapping(value = "/user/set/avatar")
+    public R avatar(String url) {
+        Long userId = tokenService.getLoginUserApplet().getUserId();
+        TAppUser byId = appUserService.getById(userId);
+        byId.setAvatar(url);
+        appUserService.updateById(byId);
+
+        return R.ok();
 
     }
 
@@ -817,7 +849,7 @@
         boolean doubleVip = false;
         if (one!=null){
             TVip tVip = JSONObject.parseObject(one.getVipJson(), TVip.class);
-            if (tVip.getDoubleIntegration()==1){
+            if (tVip.getDoubleIntegration()!=null&&tVip.getDoubleIntegration()==1){
                 doubleVip = true;
             }
         }
@@ -932,7 +964,7 @@
         boolean doubleVip = false;
         if (one!=null){
              TVip tVip = JSONObject.parseObject(one.getVipJson(), TVip.class);
-             if (tVip.getDoubleIntegration()==1){
+             if (tVip.getDoubleIntegration()!=null&&tVip.getDoubleIntegration()==1){
                  doubleVip = true;
              }
         }
@@ -1015,6 +1047,17 @@
         String brand = CarBrandUtil.getBrand();
         JSONObject jsonObject = JSON.parseObject(brand);
         JSONArray data = jsonObject.getJSONArray("data");
+        JSONArray data1 = new JSONArray();
+        if (name!=null) {
+            for (int i = 0; i < data.size(); i++) {
+                JSONObject brand1 = data.getJSONObject(i);
+                String o = (String) brand1.get("name");
+                if (o.contains(name)) {
+                    data1.add(brand1);
+                }
+            }
+            return R.ok(data1);
+        }
         return R.ok(data);
 
     }

--
Gitblit v1.7.1