package com.ruoyi.other.controller;
|
|
|
import com.ruoyi.account.api.feignClient.AppUserClient;
|
import com.ruoyi.account.api.model.TAppUser;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.common.core.web.domain.AjaxResult;
|
import com.ruoyi.common.core.web.page.BasePage;
|
import com.ruoyi.common.core.web.page.PageInfo;
|
import com.ruoyi.common.security.service.TokenService;
|
import com.ruoyi.order.api.feignClient.OrderClient;
|
import com.ruoyi.other.api.domain.TActivity;
|
import com.ruoyi.other.api.domain.TGoods;
|
import com.ruoyi.other.api.dto.AdvertisingDTO;
|
import com.ruoyi.other.api.dto.ExchangeDto;
|
import com.ruoyi.other.api.dto.GoodsDTO;
|
import com.ruoyi.other.service.TActivityService;
|
import com.ruoyi.other.service.TAdvertisingService;
|
import com.ruoyi.other.service.TGoodsService;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.annotation.Resource;
|
|
/**
|
* <p>
|
* 前端控制器
|
* </p>
|
*
|
* @author 无关风月
|
* @since 2024-08-06
|
*/
|
@RestController
|
@RequestMapping("/t-goods")
|
public class TGoodsController {
|
@Autowired
|
private TGoodsService goodsService;
|
@Autowired
|
private TActivityService activityService;
|
@Resource
|
private TokenService tokenService;
|
@Resource
|
private AppUserClient appUserClient;
|
@Resource
|
private OrderClient orderClient;
|
|
|
|
|
@PostMapping("/saveGoods")
|
@ApiOperation(tags = {"管理后台-商品管理"},value = "商品添加")
|
public AjaxResult saveActivity(@RequestBody TGoods dto) {
|
goodsService.save(dto);
|
return AjaxResult.success();
|
}
|
|
|
|
@GetMapping("/delete")
|
@ApiOperation(tags = {"管理后台-商品管理"},value = "商品删除")
|
public AjaxResult delete(Integer id) {
|
goodsService.removeById(id);
|
return AjaxResult.success();
|
}
|
|
|
|
@PostMapping("/updateVip")
|
@ApiOperation(tags = {"管理后台-商品管理"},value = "商品修改")
|
public AjaxResult updateActivity(@RequestBody TGoods dto) {
|
goodsService.updateById(dto);
|
return AjaxResult.success();
|
}
|
|
|
|
@GetMapping("/getInfo")
|
@ApiOperation(tags = {"管理后台-商品管理","小程序-兑换商城"},value = "商品查看详情")
|
public AjaxResult<TGoods> getInfo(Integer id) {
|
return AjaxResult.ok(goodsService.getById(id));
|
}
|
|
|
|
@ApiOperation(tags = {"管理后台-商品管理"},value = "商品列表分页查询")
|
@PostMapping(value = "/pageList")
|
public AjaxResult<PageInfo<TGoods>> pageList(@RequestBody GoodsDTO dto) {
|
return AjaxResult.ok(goodsService.pageList(dto));
|
}
|
|
|
@ApiOperation(tags = {"小程序-兑换商城"},value = "商品列表分页查询")
|
@PostMapping(value = "/app/pageList")
|
public AjaxResult<PageInfo<TGoods>> apppageList(BasePage basePage) {
|
return AjaxResult.ok(goodsService.pageList1(basePage));
|
}
|
|
@ApiOperation(tags = {"小程序-兑换商城"},value = "兑换商品")
|
@PostMapping(value = "/app/shop")
|
public AjaxResult<PageInfo<TGoods>> shop(@RequestBody ExchangeDto exchangeDto) {
|
//查询当前商品信息
|
TGoods good = goodsService.getById(exchangeDto.getGoodId());
|
|
//检查当前用户积分是否够
|
Long userId = tokenService.getLoginUserApplet().getUserId();
|
TAppUser user = appUserClient.getUserById(userId).getData();
|
if (user.getPoints()<good.getRedeemPoints()){
|
return AjaxResult.error("当前用户积分不足");
|
}
|
//检查当前用户是否到达兑换上限
|
Long count = orderClient.getExchangeById(exchangeDto.getGoodId(), userId).getData();
|
if (good.getLimitExchangeTimes()!=-1&&count>=good.getLimitExchangeTimes()){
|
return AjaxResult.error("当前用户已到达兑换上限");
|
}
|
//生成积分兑换成功的订单
|
orderClient.exchangeCreate(exchangeDto);
|
|
//如果是优惠卷,赠送优惠卷给用户
|
|
|
|
|
//生成消耗积分的记录
|
return AjaxResult.success();
|
|
|
}
|
|
|
/**
|
* 根据id获取商品信息
|
* @param id
|
* @return
|
*/
|
@PostMapping("/getGoodsById/{id}")
|
public R<TGoods> getGoodsById(@PathVariable Integer id){
|
TGoods goods = goodsService.getById(id);
|
return R.ok(goods);
|
}
|
}
|