From ecca9ab70a9a87bcb60977c92fbf81053b8fc1bb Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期三, 04 九月 2024 09:17:55 +0800 Subject: [PATCH] 新增优化 --- ruoyi-service/ruoyi-admin/src/main/java/com/ruoyi/admin/controller/WithdrawController.java | 145 +++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 135 insertions(+), 10 deletions(-) diff --git a/ruoyi-service/ruoyi-admin/src/main/java/com/ruoyi/admin/controller/WithdrawController.java b/ruoyi-service/ruoyi-admin/src/main/java/com/ruoyi/admin/controller/WithdrawController.java index b6bbf54..a12f483 100644 --- a/ruoyi-service/ruoyi-admin/src/main/java/com/ruoyi/admin/controller/WithdrawController.java +++ b/ruoyi-service/ruoyi-admin/src/main/java/com/ruoyi/admin/controller/WithdrawController.java @@ -1,19 +1,28 @@ package com.ruoyi.admin.controller; -import com.ruoyi.admin.entity.Withdraw; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ruoyi.admin.entity.User; +import com.ruoyi.admin.service.UserService; import com.ruoyi.admin.service.WithdrawService; import com.ruoyi.common.core.domain.R; +import com.ruoyi.common.core.exception.GlobalException; +import com.ruoyi.common.security.service.TokenService; +import com.ruoyi.order.api.entity.UserWithdrawRecordVO; +import com.ruoyi.order.api.entity.Withdraw; +import com.ruoyi.order.api.entity.WithdrawExportRequest; +import com.ruoyi.order.api.feignClient.WithdrawClient; +import com.ruoyi.system.api.model.LoginUser; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; +import javax.servlet.http.HttpServletResponse; +import java.util.List; +import java.util.stream.Collectors; /** * <p> @@ -25,25 +34,141 @@ */ @RestController @RequestMapping("/withdraw") -@Api(tags = {"后台-用户管理-用户列表"}) +@Api(tags = {"后台-用户管理-提现列表"}) public class WithdrawController { @Resource private WithdrawService withdrawService; + @Resource + private WithdrawClient withdrawClient; + @Resource + private UserService userService; + + @Resource + private TokenService tokenService; + /** + * 用户所关联提现记录分页列表 + * + * @param pageNum 页码 + * @param pageSize 每页显示条数 + * @return 分页列表 + */ + @ApiOperation(value = "用户提现管理-提现记录分页列表", tags = {"后台-用户管理-提现列表"}) + @GetMapping(value = "/withdrawPage") + @ApiImplicitParams({ + @ApiImplicitParam(value = "用户昵称", name = "nickname", dataType = "String"), + @ApiImplicitParam(value = "手机号", name = "userPhone", dataType = "String"), + @ApiImplicitParam(value = "申请时间", name = "applyForTime", dataType = "String"), + @ApiImplicitParam(value = "审核状态(0待审核;1已通过;2已驳回)", name = "state", dataType = "Integer"), + @ApiImplicitParam(value = "页码", name = "pageNum", dataType = "Integer", required = true), + @ApiImplicitParam(value = "每页条数", name = "pageSize", dataType = "Integer", required = true) + }) + public R<Page<UserWithdrawRecordVO>> withdrawPage(String nickname, String userPhone, + String applyForTime, Integer state, + @RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum, + @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) { + + List<Integer> userIds = userService.lambdaQuery().like(User::getNickname, nickname).list().stream().map(User::getId).collect(Collectors.toList()); + if (nickname!=null&&nickname!="") { + if (userIds.isEmpty()) { + return R.ok(new Page<UserWithdrawRecordVO>()); + } + } + LoginUser loginUser = tokenService.getLoginUser(); + List<String> cityList = loginUser.getCityList(); + + + Page<UserWithdrawRecordVO> page = withdrawClient.withdrawPage1(cityList,nickname, userPhone, applyForTime, + state, pageNum, pageSize,userIds).getData(); + if (null != page) { + for (UserWithdrawRecordVO record : page.getRecords()) { + Integer userId = record.getUserId(); + User user = userService.lambdaQuery() + .eq(User::getId, userId) + .eq(User::getIsDelete, 0).one(); + if (null != user) { + record.setUserNo(user.getUserNo()); + record.setNickname(user.getNickname()); + record.setProfilePicture(user.getProfilePicture()); + } + } + } + return R.ok(page); + } /** * 查看提现记录详情 * * @param id 提现记录id */ - @ApiOperation(value = "提现记录详情", tags = {"后台-用户管理-用户列表"}) + @ApiOperation(value = "提现记录详情", tags = {"后台-用户管理-提现列表"}) @GetMapping(value = "/withdrawRecordDetail") @ApiImplicitParams({ @ApiImplicitParam(value = "提现记录id", name = "id", dataType = "Integer", required = true) }) - public R<Withdraw> withdrawRecordDetail(@RequestParam Integer id) { - Withdraw withdraw = withdrawService.lambdaQuery().eq(Withdraw::getId, id).eq(Withdraw::getIsDelete, 0).one(); - return R.ok(withdraw); + public R<Withdraw> withdrawRecordDetail(@RequestParam Long id) { + return withdrawClient.withdrawRecordDetail(id); + } + + /** + * 提现管理-提现审批 + * + * @param id 提现记录id + * @param state 审批结果 + * @param opinion 审批意见 + */ + @ApiOperation(value = "提现管理-提现审批", tags = {"后台-用户管理-提现列表"}) + @GetMapping(value = "/withdrawExamine") + @ApiImplicitParams({ + @ApiImplicitParam(value = "提现记录id", name = "id", dataType = "Integer", required = true), + @ApiImplicitParam(value = "审批意见", name = "opinion", dataType = "String"), + @ApiImplicitParam(value = "审批同意/不同意(1同意;2驳回)", name = "state", dataType = "Integer", required = true) + }) + public R<String> withdrawExamine(@RequestParam Long id, @RequestParam Integer state, String opinion) { + Withdraw withdraw = withdrawClient.withdrawRecordDetail(id).getData(); + if (null == withdraw) { + throw new GlobalException("提现记录不存在或已删除!"); + } + User user = userService.lambdaQuery() + .eq(User::getId, withdraw.getUserId()) + .eq(User::getIsDelete, 0).one(); + if (null == user) { + throw new GlobalException("提交申请的用户信息不存在!"); + } + Boolean data = withdrawClient.withdrawExamine(id, state, opinion, user.getOpenId(), user.getId()).getData(); + if (null != data) { + return data ? R.ok(null, "审批成功!") : R.fail("审批失败!"); + } else { + return R.fail("审批失败!"); + } + } + + /** + * 用户提现记录导出 + * + * @param exportRequest 提现记录 + */ + @ApiOperation(value = "用户提现管理-excel导出用户提现记录", tags = {"后台-用户管理-提现列表"}) + @PostMapping(value = "/excelExport") + public R<String> excelExport(@RequestBody WithdrawExportRequest exportRequest, HttpServletResponse response) { + List<UserWithdrawRecordVO> data = withdrawClient.excelExport(exportRequest).getData(); + // 独立service + return withdrawService.excelExport(data, response); + } + + /** + * 批量删除提现记录 + * + * @param ids 轮播图多条id拼接 + * @return 封装分页数据 + */ + @ApiOperation(value = "批量删除提现记录", tags = {"后台-用户管理-提现列表"}) + @GetMapping(value = "/batchDelete") + @ApiImplicitParams({ + @ApiImplicitParam(value = "多个id ',' 拼接", name = "ids", dataType = "String", required = true) + }) + public R<String> batchDelete(@RequestParam String ids) { + return withdrawClient.batchDelete(ids); } } -- Gitblit v1.7.1