package com.ruoyi.order.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.common.security.service.TokenService;
import com.ruoyi.order.model.Order;
import com.ruoyi.order.model.RefundPass;
import com.ruoyi.order.service.OrderService;
import com.ruoyi.order.service.RefundPassService;
import com.ruoyi.order.vo.ApplyRefundPass;
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 java.util.Arrays;
/**
*
* 前端控制器
*
*
* @author luodangjia
* @since 2024-11-21
*/
@RestController
@RequestMapping("/refund-pass")
public class RefundPassController {
@Resource
private RefundPassService refundPassService;
@Resource
private TokenService tokenService;
@Resource
private OrderService orderService;
@ResponseBody
@PostMapping("/applyRefundPass")
@ApiOperation(value = "售后申请", tags = {"我的订单-个人中心-小程序"})
public R applyRefundPass(@RequestBody ApplyRefundPass applyRefundPass){
return refundPassService.applyRefundPass(applyRefundPass);
}
@ResponseBody
@GetMapping("/getRefundPass/{orderId}")
@ApiOperation(value = "获取售后详情", tags = {"我的订单-个人中心-小程序"})
@ApiImplicitParams({
@ApiImplicitParam(name = "orderId", value = "订单id", required = true, dataType = "long"),
})
public R getRefundPass(@PathVariable("orderId") Long orderId){
Long userid = tokenService.getLoginUserApplet().getUserid();
Order order = orderService.getById(orderId);
if(!order.getAppUserId().equals(userid)){
return R.fail("权限不足");
}
RefundPass one = refundPassService.getOne(new LambdaQueryWrapper().eq(RefundPass::getOrderId, orderId)
.eq(RefundPass::getDelFlag, 0).last(" order by create_time desc limit 0,1"));
one.setIdStr(one.getId().toString());
return R.ok(one);
}
@ResponseBody
@PutMapping("/cancelRefundPass/{id}")
@ApiOperation(value = "取消售后", tags = {"我的订单-个人中心-小程序"})
@ApiImplicitParams({
@ApiImplicitParam(name = "id", value = "售后数据id", required = true, dataType = "long"),
})
public R cancelRefundPass(@PathVariable("id") Long id){
RefundPass refundPass = refundPassService.getById(id);
if(null == refundPass){
return R.fail();
}
Long userid = tokenService.getLoginUserApplet().getUserid();
Order order = orderService.getById(refundPass.getOrderId());
if(!order.getAppUserId().equals(userid)){
return R.fail("权限不足");
}
if(Arrays.asList(2, 3).contains(refundPass.getStatus())){
return R.fail("售后取消失败");
}
refundPass.setDelFlag(1);
refundPassService.updateById(refundPass);
order.setOrderStatus(4);
orderService.updateById(order);
return R.ok();
}
@ResponseBody
@PutMapping("/deliverGoodsRefundPass/{id}")
@ApiOperation(value = "售后已发货操作", tags = {"我的订单-个人中心-小程序"})
@ApiImplicitParams({
@ApiImplicitParam(name = "id", value = "售后数据id", required = true, dataType = "long"),
})
public R deliverGoodsRefundPass(@PathVariable("id") Long id){
RefundPass refundPass = refundPassService.getById(id);
if(null == refundPass){
return R.fail();
}
Long userid = tokenService.getLoginUserApplet().getUserid();
Order order = orderService.getById(refundPass.getOrderId());
if(!order.getAppUserId().equals(userid)){
return R.fail("权限不足");
}
if(4 != refundPass.getStatus()){
return R.fail("操作失败");
}
refundPass.setStatus(5);
refundPassService.updateById(refundPass);
return R.ok();
}
}