this is 3.24 update
This commit is contained in:
parent
50639f39e8
commit
1652a7ba00
|
@ -43,6 +43,7 @@ import com.cultural.heritage.utils.DecoderUtils;
|
|||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import jakarta.annotation.Resource;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
@ -106,10 +107,11 @@ public class GoodController {
|
|||
*/
|
||||
@PostMapping("/checkGeneralGood")
|
||||
@Operation(summary = "小程序端校验常规类商品立即购买", description = "参数:商品id,权限:所有人,方法名:checkGeneralGood")
|
||||
public BaseResponse<Boolean> checkGeneralGood(@RequestBody CommonRequest commonRequest) {
|
||||
public BaseResponse<Boolean> checkGeneralGood(@RequestBody CommonRequest commonRequest, HttpServletRequest request) {
|
||||
if (commonRequest == null) {
|
||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||
}
|
||||
userService.getLoginUser(request);
|
||||
Long id = commonRequest.getId();
|
||||
Good good = goodService.getById(id);
|
||||
goodService.checkGoodIsExist(good);
|
||||
|
@ -126,10 +128,11 @@ public class GoodController {
|
|||
*/
|
||||
@PostMapping("/checkServiceGood")
|
||||
@Operation(summary = "小程序端校验服务类商品立即购买", description = "参数:服务类商品校验请求体,权限:所有人,方法名:BuySingleServiceGoodVerifyRequest")
|
||||
public BaseResponse<Boolean> checkServiceGood(@RequestBody BuySingleServiceGoodVerifyRequest buySingleServiceGoodVerifyRequest) {
|
||||
public BaseResponse<Boolean> checkServiceGood(@RequestBody BuySingleServiceGoodVerifyRequest buySingleServiceGoodVerifyRequest, HttpServletRequest request) {
|
||||
if (buySingleServiceGoodVerifyRequest == null) {
|
||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||
}
|
||||
userService.getLoginUser(request);
|
||||
// 校验服务类商品预约参数
|
||||
goodService.validServiceGoodBookingParameter(buySingleServiceGoodVerifyRequest);
|
||||
Long goodId = buySingleServiceGoodVerifyRequest.getGoodId();
|
||||
|
|
Loading…
Reference in New Issue
Block a user