package com.ruoyi.admin.controller;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.admin.entity.Order;
|
import com.ruoyi.admin.entity.User;
|
import com.ruoyi.admin.entity.Withdraw;
|
import com.ruoyi.admin.request.WithdrawExportRequest;
|
import com.ruoyi.admin.service.OrderService;
|
import com.ruoyi.admin.service.UserService;
|
import com.ruoyi.admin.service.WithdrawService;
|
import com.ruoyi.admin.vo.UserWithdrawRecordVO;
|
import com.ruoyi.common.core.constant.Constants;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.common.core.exception.GlobalException;
|
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.*;
|
|
import javax.annotation.Resource;
|
import javax.servlet.http.HttpServletResponse;
|
import java.util.Arrays;
|
import java.util.List;
|
import java.util.stream.Collectors;
|
|
/**
|
* <p>
|
* 用户提现记录表 前端控制器
|
* </p>
|
*
|
* @author hjl
|
* @since 2024-05-29
|
*/
|
@RestController
|
@RequestMapping("/withdraw")
|
@Api(tags = {"后台-用户管理-提现列表"})
|
public class WithdrawController {
|
|
@Resource
|
private WithdrawService withdrawService;
|
@Resource
|
private OrderService orderService;
|
@Resource
|
private UserService userService;
|
|
/**
|
* 用户所关联提现记录分页列表
|
*
|
* @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<IPage<UserWithdrawRecordVO>> withdrawPage(String nickname, String userPhone,
|
String applyForTime, Integer state,
|
@RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum,
|
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) {
|
return R.ok(withdrawService.withdrawPage(nickname, userPhone, applyForTime, state, Page.of(pageNum, pageSize)));
|
}
|
|
/**
|
* 查看提现记录详情
|
*
|
* @param id 提现记录id
|
*/
|
@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);
|
}
|
|
/**
|
* 提现管理-提现审批
|
*
|
* @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 Integer id, @RequestParam Integer state, String opinion) {
|
Withdraw withdraw = withdrawService.lambdaQuery().eq(Withdraw::getId, id).eq(Withdraw::getIsDelete, 0)
|
.eq(Withdraw::getState, 0).one();
|
if (null == withdraw) {
|
return R.fail(503, "当前提现记录审批状态异常!");
|
}
|
// 修改审批状态及审批意见
|
withdraw.setState(state);
|
withdraw.setOpinion(opinion);
|
// 同意提现申请,更改订单提现状态
|
boolean update = true;
|
if (Constants.ONE.equals(state)) {
|
update = orderService.lambdaUpdate().set(Order::getIsWithdrawal, Constants.ONE)
|
.eq(Order::getId, withdraw.getOrderId()).eq(Order::getIsDelete, 0).update();
|
// 商家打款至用户微信零钱
|
User user = userService.lambdaQuery().eq(User::getId, withdraw.getUserId())
|
.eq(User::getIsDelete, 0).one();
|
Order order = orderService.lambdaQuery().eq(Order::getId, withdraw.getOrderId())
|
.eq(Order::getIsDelete, 0).one();
|
if (null == order) {
|
throw new GlobalException("订单信息异常!");
|
}
|
Boolean b = withdrawService.confirmWithdraw(user, order);
|
}
|
update = update && withdrawService.updateById(withdraw);
|
return update ? R.ok(null, "审批成功!") : R.fail("审批失败!");
|
}
|
|
/**
|
* 用户提现记录导出
|
*
|
* @param exportRequest 提现记录
|
*/
|
@ApiOperation(value = "用户提现管理-excel导出用户提现记录", tags = {"后台-用户管理-提现列表"})
|
@PostMapping(value = "/excelExport")
|
public R<String> excelExport(@RequestBody WithdrawExportRequest exportRequest, HttpServletResponse response) {
|
return withdrawService.excelExport(exportRequest, 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) {
|
List<String> idList = Arrays.stream(ids.split(",")).collect(Collectors.toList());
|
List<Withdraw> list = withdrawService.lambdaQuery().in(Withdraw::getId, idList).list();
|
list.forEach(data -> data.setIsDelete(1));
|
return withdrawService.updateBatchById(list) ? R.ok() : R.fail();
|
}
|
|
}
|