parent
9bc8963757
commit
9543d874f3
@ -0,0 +1,263 @@ |
|||||||
|
package com.bweb.controller.Goods; |
||||||
|
|
||||||
|
|
||||||
|
import com.github.pagehelper.PageHelper; |
||||||
|
import com.github.pagehelper.PageInfo; |
||||||
|
import com.hai.common.exception.ErrorCode; |
||||||
|
import com.hai.common.exception.ErrorHelp; |
||||||
|
import com.hai.common.exception.SysCode; |
||||||
|
import com.hai.common.security.SessionObject; |
||||||
|
import com.hai.common.security.UserCenter; |
||||||
|
import com.hai.common.utils.ResponseMsgUtil; |
||||||
|
|
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
import com.hai.entity.HighGoodsType; |
||||||
|
import com.hai.goods.service.GoodsDetailService; |
||||||
|
import com.hai.model.ResponseData; |
||||||
|
import com.hai.model.UserInfoModel; |
||||||
|
import com.hai.service.HighGoodsTypeService; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
|
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
@Controller |
||||||
|
@RequestMapping(value = "/goods") |
||||||
|
@Api(value = "商品") |
||||||
|
public class GoodsDetailController { |
||||||
|
Logger log = LoggerFactory.getLogger(GoodsDetailController.class); |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsDetailService goodsDetailService; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private HighGoodsTypeService highGoodsTypeService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private UserCenter userCenter; |
||||||
|
|
||||||
|
@RequestMapping(value = "/getListGoodsDetail", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品列表") |
||||||
|
public ResponseData getListGoodsDetail( |
||||||
|
@RequestParam(value = "title", required = false) String title, |
||||||
|
@RequestParam(value = "status", required = false) Integer status, |
||||||
|
@RequestParam(name = "pageNum", required = true) Integer pageNum, |
||||||
|
@RequestParam(name = "pageSize", required = true) Integer pageSize |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
|
||||||
|
Map<String, Object> map = new HashMap<>(); |
||||||
|
|
||||||
|
map.put("title", title); |
||||||
|
map.put("status", status); |
||||||
|
|
||||||
|
PageHelper.startPage(pageNum,pageSize); |
||||||
|
|
||||||
|
List<GoodsDetail> list = goodsDetailService.getGoodsDetailList(map); |
||||||
|
return ResponseMsgUtil.success(new PageInfo<>(list)); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> getListUser() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/insertGoods", method = RequestMethod.POST) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "新增产品") |
||||||
|
public ResponseData insertGoods(@RequestBody GoodsDetail goodsDetail, HttpServletRequest request) { |
||||||
|
try { |
||||||
|
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
if (goodsDetail == null || |
||||||
|
goodsDetail.getName() == null || |
||||||
|
goodsDetail.getGoodsType() == null || |
||||||
|
goodsDetail.getListImg() == null || |
||||||
|
goodsDetail.getBannerImg() == null || |
||||||
|
goodsDetail.getDetailImg() == null |
||||||
|
|
||||||
|
) { |
||||||
|
log.error("GoodsDetailController -> insertProduct() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||||
|
} |
||||||
|
|
||||||
|
HighGoodsType goodsType = highGoodsTypeService.findById(goodsDetail.getGoodsType().intValue()); |
||||||
|
|
||||||
|
goodsDetail.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsDetail.setStatus(2); |
||||||
|
goodsDetail.setCompanyId(userInfoModel.getBsCompany().getId()); |
||||||
|
goodsDetail.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
goodsDetail.setCreateTime(new Date()); |
||||||
|
goodsDetail.setGoodsTypeName(goodsType.getTitle()); |
||||||
|
goodsDetail.setUpdateTime(new Date()); |
||||||
|
|
||||||
|
goodsDetailService.insertGoodsDetail(goodsDetail); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("新增成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> insertPrice() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/updateGoods", method = RequestMethod.POST) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "修改产品") |
||||||
|
public ResponseData updateGoods(@RequestBody GoodsDetail goodsDetail, HttpServletRequest request) { |
||||||
|
try { |
||||||
|
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
if (goodsDetail == null || |
||||||
|
goodsDetail.getId() == null || |
||||||
|
goodsDetail.getName() == null || |
||||||
|
goodsDetail.getGoodsType() == null || |
||||||
|
goodsDetail.getListImg() == null || |
||||||
|
goodsDetail.getBannerImg() == null || |
||||||
|
goodsDetail.getDetailImg() == null |
||||||
|
|
||||||
|
) { |
||||||
|
log.error("GoodsDetailController -> insertProduct() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||||
|
} |
||||||
|
|
||||||
|
GoodsDetail goods = goodsDetailService.findGoodsDetailById(goodsDetail.getId()); |
||||||
|
|
||||||
|
HighGoodsType goodsType = highGoodsTypeService.findById(goodsDetail.getGoodsType().intValue()); |
||||||
|
|
||||||
|
|
||||||
|
goodsDetail.setStatus(goods.getStatus()); |
||||||
|
goodsDetail.setCreateTime(goods.getCreateTime()); |
||||||
|
goodsDetail.setUpdateTime(new Date()); |
||||||
|
goodsDetail.setGoodsTypeName(goodsType.getTitle()); |
||||||
|
|
||||||
|
goodsDetail.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsDetail.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
|
||||||
|
goodsDetailService.updateGoodsDetail(goodsDetail); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("修改成功"); |
||||||
|
|
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> insertPrice() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/findGoodsDetailById", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品列表") |
||||||
|
public ResponseData findGoodsDetailById( |
||||||
|
@RequestParam(value = "id", required = true) Long id |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
GoodsDetail goodsDetail = goodsDetailService.findGoodsDetailById(id); |
||||||
|
|
||||||
|
if (goodsDetail == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品信息"); |
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(goodsDetail); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/deleteGoods", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "删除商品") |
||||||
|
public ResponseData deleteGoods( |
||||||
|
@RequestParam(value = "id", required = true) Long id |
||||||
|
, HttpServletRequest request |
||||||
|
) { |
||||||
|
try { |
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
GoodsDetail goodsDetail = goodsDetailService.findGoodsDetailById(id); |
||||||
|
|
||||||
|
if (goodsDetail == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品信息"); |
||||||
|
} |
||||||
|
|
||||||
|
if (goodsDetail.getStatus() == 1) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "当前状态错误,不可删除"); |
||||||
|
} |
||||||
|
|
||||||
|
goodsDetail.setStatus(0); |
||||||
|
goodsDetail.setUpdateTime(new Date()); |
||||||
|
goodsDetail.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsDetail.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
goodsDetailService.updateGoodsDetail(goodsDetail); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("删除成功!"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/goodsUpDown", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "商品上下架") |
||||||
|
public ResponseData goodsUpDown( |
||||||
|
@RequestParam(value = "id", required = true) Long id |
||||||
|
, HttpServletRequest request |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
GoodsDetail goodsDetail = goodsDetailService.findGoodsDetailById(id); |
||||||
|
|
||||||
|
if (goodsDetail == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品信息!"); |
||||||
|
} |
||||||
|
|
||||||
|
if (goodsDetail.getStatus() == 0) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "当前状态错误,无法操作!"); |
||||||
|
} |
||||||
|
|
||||||
|
goodsDetail.setStatus(goodsDetail.getStatus() == 1 ? 2:1); |
||||||
|
goodsDetail.setUpdateTime(new Date()); |
||||||
|
goodsDetail.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsDetail.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
goodsDetailService.updateGoodsDetail(goodsDetail); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("操作成功!"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
@ -0,0 +1,208 @@ |
|||||||
|
package com.bweb.controller.Goods; |
||||||
|
|
||||||
|
import com.github.pagehelper.PageHelper; |
||||||
|
import com.github.pagehelper.PageInfo; |
||||||
|
import com.hai.common.exception.ErrorCode; |
||||||
|
import com.hai.common.exception.ErrorHelp; |
||||||
|
import com.hai.common.exception.SysCode; |
||||||
|
import com.hai.common.security.SessionObject; |
||||||
|
import com.hai.common.security.UserCenter; |
||||||
|
import com.hai.common.utils.ResponseMsgUtil; |
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
import com.hai.entity.GoodsSku; |
||||||
|
import com.hai.goods.service.GoodsDetailService; |
||||||
|
import com.hai.goods.service.GoodsSkuService; |
||||||
|
import com.hai.model.ResponseData; |
||||||
|
import com.hai.model.UserInfoModel; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
@Controller |
||||||
|
@RequestMapping(value = "/goodsSku") |
||||||
|
@Api(value = "商品") |
||||||
|
public class GoodsSkuController { |
||||||
|
|
||||||
|
Logger log = LoggerFactory.getLogger(GoodsSkuController.class); |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsSkuService goodsSkuService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private UserCenter userCenter; |
||||||
|
|
||||||
|
@RequestMapping(value = "/getListGoodsSku", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品SKU") |
||||||
|
public ResponseData getListGoodsSku( |
||||||
|
@RequestParam(value = "title", required = false) String title, |
||||||
|
@RequestParam(value = "goodsId", required = false) Long goodsId |
||||||
|
|
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
|
||||||
|
Map<String, Object> map = new HashMap<>(); |
||||||
|
|
||||||
|
map.put("title", title); |
||||||
|
map.put("goodsId", goodsId); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(goodsSkuService.getGoodsSkuList(map)); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> getListUser() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/insertGoodsSku", method = RequestMethod.POST) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "新增商品SKU") |
||||||
|
public ResponseData insertGoodsSku(@RequestBody GoodsSku goodsSku, HttpServletRequest request) { |
||||||
|
try { |
||||||
|
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
if (goodsSku == null || |
||||||
|
goodsSku.getName() == null || |
||||||
|
goodsSku.getGoodsId() == null || |
||||||
|
goodsSku.getShowImg() == null || |
||||||
|
goodsSku.getBannerImg() == null || |
||||||
|
goodsSku.getOriginalPrice() == null || |
||||||
|
goodsSku.getPrice() == null || |
||||||
|
goodsSku.getStock() == null |
||||||
|
|
||||||
|
) { |
||||||
|
log.error("GoodsDetailController -> insertProduct() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
goodsSku.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsSku.setStatus(1); |
||||||
|
goodsSku.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
goodsSku.setCreateTime(new Date()); |
||||||
|
goodsSku.setUpdateTime(new Date()); |
||||||
|
|
||||||
|
goodsSkuService.insertGoodsSku(goodsSku); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("新增成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> insertPrice() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/updateGoodsSku", method = RequestMethod.POST) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "更新商品SKU") |
||||||
|
public ResponseData updateGoodsSku(@RequestBody GoodsSku goodsSku, HttpServletRequest request) { |
||||||
|
try { |
||||||
|
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
if (goodsSku == null || |
||||||
|
goodsSku.getId() == null || |
||||||
|
goodsSku.getName() == null || |
||||||
|
goodsSku.getGoodsId() == null || |
||||||
|
goodsSku.getShowImg() == null || |
||||||
|
goodsSku.getBannerImg() == null || |
||||||
|
goodsSku.getOriginalPrice() == null || |
||||||
|
goodsSku.getPrice() == null || |
||||||
|
goodsSku.getStock() == null |
||||||
|
|
||||||
|
) { |
||||||
|
log.error("GoodsDetailController -> insertProduct() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
GoodsSku sku = goodsSkuService.findGoodsSkuById(goodsSku.getId()); |
||||||
|
|
||||||
|
goodsSku.setStatus(sku.getStatus()); |
||||||
|
goodsSku.setCreateTime(sku.getCreateTime()); |
||||||
|
goodsSku.setUpdateTime(new Date()); |
||||||
|
|
||||||
|
goodsSku.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsSku.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
|
||||||
|
goodsSkuService.updateGoodsSku(goodsSku); |
||||||
|
|
||||||
|
|
||||||
|
return ResponseMsgUtil.success("修改成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> insertPrice() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/findGoodsSkuById", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品SKU") |
||||||
|
public ResponseData findGoodsSkuById( |
||||||
|
@RequestParam(value = "id", required = true) Long id |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
GoodsSku goodsSku = goodsSkuService.findGoodsSkuById(id); |
||||||
|
|
||||||
|
if (goodsSku == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品SKU信息"); |
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(goodsSku); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/deleteSku", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "删除SKU") |
||||||
|
public ResponseData deleteSku( |
||||||
|
@RequestParam(value = "id", required = true) Long id |
||||||
|
, HttpServletRequest request |
||||||
|
) { |
||||||
|
try { |
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
UserInfoModel userInfoModel = (UserInfoModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
GoodsSku goodsSku = goodsSkuService.findGoodsSkuById(id); |
||||||
|
|
||||||
|
if (goodsSku == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品SKU信息"); |
||||||
|
} |
||||||
|
|
||||||
|
goodsSku.setStatus(0); |
||||||
|
goodsSku.setUpdateTime(new Date()); |
||||||
|
goodsSku.setOpId(userInfoModel.getSecUser().getId()); |
||||||
|
goodsSku.setOpName(userInfoModel.getSecUser().getLoginName()); |
||||||
|
goodsSkuService.updateGoodsSku(goodsSku); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(goodsSku); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,170 @@ |
|||||||
|
package com.cweb.controller.Goods; |
||||||
|
|
||||||
|
import com.github.pagehelper.PageHelper; |
||||||
|
import com.github.pagehelper.PageInfo; |
||||||
|
import com.hai.common.exception.ErrorCode; |
||||||
|
import com.hai.common.exception.ErrorHelp; |
||||||
|
import com.hai.common.exception.SysCode; |
||||||
|
import com.hai.common.security.SessionObject; |
||||||
|
import com.hai.common.security.UserCenter; |
||||||
|
import com.hai.common.utils.ResponseMsgUtil; |
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
import com.hai.entity.GoodsSku; |
||||||
|
import com.hai.goods.model.GoodsModel; |
||||||
|
import com.hai.goods.service.GoodsDetailService; |
||||||
|
import com.hai.goods.service.GoodsSkuService; |
||||||
|
import com.hai.model.ResponseData; |
||||||
|
import com.hai.model.UserInfoModel; |
||||||
|
import com.hai.service.HighGoodsTypeService; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.beans.BeanUtils; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
@Controller |
||||||
|
@RequestMapping(value = "/goods") |
||||||
|
@Api(value = "商品") |
||||||
|
public class GoodsController { |
||||||
|
Logger log = LoggerFactory.getLogger(GoodsController.class); |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsDetailService goodsDetailService; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private UserCenter userCenter; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private HighGoodsTypeService highGoodsTypeService; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsSkuService goodsSkuService; |
||||||
|
|
||||||
|
@RequestMapping(value = "/getListGoodsDetail", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品列表") |
||||||
|
public ResponseData getListGoodsDetail( |
||||||
|
@RequestParam(value = "title", required = false) String title, |
||||||
|
@RequestParam(value = "goodsType", required = false) Long goodsType, |
||||||
|
@RequestParam(name = "pageNum", required = true) Integer pageNum, |
||||||
|
@RequestParam(name = "pageSize", required = true) Integer pageSize |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
|
||||||
|
Map<String, Object> map = new HashMap<>(); |
||||||
|
|
||||||
|
map.put("title", title); |
||||||
|
map.put("goodsType", goodsType); |
||||||
|
map.put("status", 1); |
||||||
|
|
||||||
|
PageHelper.startPage(pageNum,pageSize); |
||||||
|
|
||||||
|
List<GoodsDetail> list = goodsDetailService.getGoodsDetailList(map); |
||||||
|
|
||||||
|
List<GoodsModel> goodsModels = new ArrayList<>(); |
||||||
|
|
||||||
|
for (GoodsDetail goodsDetail : list) { |
||||||
|
|
||||||
|
GoodsModel goodsModel = new GoodsModel(); |
||||||
|
|
||||||
|
List<GoodsSku> goodsSku = goodsSkuService.getGoodsSkuList(goodsDetail.getId()); |
||||||
|
if (goodsSku.size() > 0) { |
||||||
|
BigDecimal minPrice = goodsSku.get(0).getPrice(); |
||||||
|
BigDecimal minOriginalPrice = goodsSku.get(0).getOriginalPrice(); |
||||||
|
|
||||||
|
for (GoodsSku sku : goodsSku) { |
||||||
|
if (sku.getPrice().compareTo(minPrice) < 0) { |
||||||
|
minPrice = sku.getPrice(); |
||||||
|
minOriginalPrice = sku.getOriginalPrice(); |
||||||
|
} |
||||||
|
} |
||||||
|
BeanUtils.copyProperties(goodsDetail, goodsModel); |
||||||
|
goodsModel.setOriginalPrice(minOriginalPrice); |
||||||
|
goodsModel.setPrice(minPrice); |
||||||
|
goodsModel.setWhetherMultiple(goodsSku.size() != 1); |
||||||
|
|
||||||
|
goodsModels.add(goodsModel); |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(new PageInfo<>(goodsModels)); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> getListUser() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@RequestMapping(value = "/findGoodsDetailById", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品详情") |
||||||
|
public ResponseData findGoodsDetailById( |
||||||
|
@RequestParam(value = "id", required = true) Long id |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
GoodsDetail goodsDetail = goodsDetailService.findGoodsDetailById(id); |
||||||
|
|
||||||
|
if (goodsDetail == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品信息"); |
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(goodsDetail); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/findGoodsSkuByGoodsId", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询商品sku") |
||||||
|
public ResponseData findGoodsSkuByGoodsId( |
||||||
|
@RequestParam(value = "goodsId", required = true) Long goodsId |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
List<GoodsSku> goodsSkus = goodsSkuService.getGoodsSkuList(goodsId); |
||||||
|
|
||||||
|
if (goodsSkus.size() == 0) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关商品规格信息"); |
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(goodsSkus); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/getGoodsTypeTree", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "获取商品类型树结构") |
||||||
|
public ResponseData getGoodsTypeTree(@RequestParam(name = "businessType", required = true) Integer businessType) { |
||||||
|
try { |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(highGoodsTypeService.getGoodsTypeTree(businessType)); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("HighOrderController --> getUserOrderList() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
@ -0,0 +1,222 @@ |
|||||||
|
package com.cweb.controller.Goods; |
||||||
|
|
||||||
|
import com.github.pagehelper.PageHelper; |
||||||
|
import com.github.pagehelper.PageInfo; |
||||||
|
import com.hai.common.exception.ErrorCode; |
||||||
|
import com.hai.common.exception.ErrorHelp; |
||||||
|
import com.hai.common.exception.SysCode; |
||||||
|
import com.hai.common.security.SessionObject; |
||||||
|
import com.hai.common.security.UserCenter; |
||||||
|
import com.hai.common.utils.ResponseMsgUtil; |
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
import com.hai.entity.GoodsShoppingCart; |
||||||
|
import com.hai.entity.GoodsShoppingCartExample; |
||||||
|
import com.hai.entity.GoodsSku; |
||||||
|
import com.hai.goods.model.GoodsModel; |
||||||
|
import com.hai.goods.model.ShoppingCartModel; |
||||||
|
import com.hai.goods.service.GoodsDetailService; |
||||||
|
import com.hai.goods.service.GoodsSkuService; |
||||||
|
import com.hai.goods.service.ShoppingCartService; |
||||||
|
import com.hai.model.HighUserModel; |
||||||
|
import com.hai.model.ResponseData; |
||||||
|
import com.hai.model.UserInfoModel; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import org.slf4j.Logger; |
||||||
|
import org.slf4j.LoggerFactory; |
||||||
|
import org.springframework.beans.BeanUtils; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
@Controller |
||||||
|
@RequestMapping(value = "/shoppingCart") |
||||||
|
@Api(value = "购物车") |
||||||
|
public class ShoppingCartController { |
||||||
|
|
||||||
|
Logger log = LoggerFactory.getLogger(GoodsController.class); |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private UserCenter userCenter; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsDetailService goodsDetailService; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsSkuService goodsSkuService; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private ShoppingCartService shoppingCartService; |
||||||
|
|
||||||
|
@RequestMapping(value = "/getShoppingCartList", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "查询购物车列表") |
||||||
|
public ResponseData getShoppingCartList( |
||||||
|
HttpServletRequest request |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
// 用户
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
HighUserModel userInfoModel = (HighUserModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
Map<String, Object> map = new HashMap<>(); |
||||||
|
|
||||||
|
map.put("userId", userInfoModel.getHighUser().getId()); |
||||||
|
|
||||||
|
List<GoodsShoppingCart> list = shoppingCartService.getShoppingCartList(map); |
||||||
|
|
||||||
|
List<ShoppingCartModel> shoppingCartModels = new ArrayList<>(); |
||||||
|
|
||||||
|
for (GoodsShoppingCart shoppingCart : list) { |
||||||
|
|
||||||
|
ShoppingCartModel shoppingCartModel = new ShoppingCartModel(); |
||||||
|
|
||||||
|
BeanUtils.copyProperties(shoppingCart, shoppingCartModel); |
||||||
|
|
||||||
|
GoodsSku sku = goodsSkuService.findGoodsSkuById(Long.valueOf(shoppingCart.getSku())); |
||||||
|
shoppingCartModel.setSkuName(sku.getName()); |
||||||
|
|
||||||
|
shoppingCartModels.add(shoppingCartModel); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success(new PageInfo<>(shoppingCartModels)); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> getListUser() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@RequestMapping(value = "/insertShoppingCart", method = RequestMethod.POST) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "新增购物车") |
||||||
|
public ResponseData insertShoppingCart(@RequestBody GoodsShoppingCart shoppingCart, HttpServletRequest request) { |
||||||
|
try { |
||||||
|
|
||||||
|
// 用户
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
HighUserModel userInfoModel = (HighUserModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
if (shoppingCart == null || |
||||||
|
shoppingCart.getGoodsId() == null || |
||||||
|
shoppingCart.getSku() == null || |
||||||
|
shoppingCart.getNum() == null || |
||||||
|
shoppingCart.getWhetherCheck() == null |
||||||
|
) { |
||||||
|
log.error("GoodsDetailController -> insertProduct() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.REQ_PARAMS_ERROR, ""); |
||||||
|
} |
||||||
|
|
||||||
|
GoodsDetail goodsDetail = goodsDetailService.findGoodsDetailById(shoppingCart.getGoodsId()); |
||||||
|
GoodsSku sku = goodsSkuService.findGoodsSkuById(Long.valueOf(shoppingCart.getSku())); |
||||||
|
|
||||||
|
if (goodsDetail == null || sku == null) { |
||||||
|
log.error("GoodsDetailController -> insertProduct() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "添加商品不存在"); |
||||||
|
} |
||||||
|
|
||||||
|
shoppingCart.setUserId(userInfoModel.getHighUser().getId()); |
||||||
|
shoppingCart.setTitle(goodsDetail.getName()); |
||||||
|
shoppingCart.setImg(goodsDetail.getListImg()); |
||||||
|
shoppingCart.setPrice(sku.getPrice()); |
||||||
|
shoppingCart.setCreateTime(new Date()); |
||||||
|
shoppingCart.setUpdateTime(new Date()); |
||||||
|
|
||||||
|
shoppingCartService.insertShoppingCart(shoppingCart); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("新增成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> insertPrice() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/deleteShoppingCart", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "删除购物车信息") |
||||||
|
public ResponseData deleteShoppingCart( |
||||||
|
@RequestParam(value = "ids", required = true) String ids, HttpServletRequest request |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
// 用户
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
HighUserModel userInfoModel = (HighUserModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
String[] idArray = ids.split(","); |
||||||
|
|
||||||
|
for (String id : idArray) { |
||||||
|
|
||||||
|
GoodsShoppingCart shoppingCart = shoppingCartService.findShoppingCartById(Long.valueOf(id)); |
||||||
|
|
||||||
|
if (shoppingCart == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关信息"); |
||||||
|
} |
||||||
|
|
||||||
|
if (!Objects.equals(userInfoModel.getHighUser().getId(), shoppingCart.getUserId())) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "用户信息错误"); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
shoppingCartService.deleteShoppingCart(Long.valueOf(id)); |
||||||
|
} |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("删除成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@RequestMapping(value = "/goodsAddNum", method = RequestMethod.GET) |
||||||
|
@ResponseBody |
||||||
|
@ApiOperation(value = "商品增加数量") |
||||||
|
public ResponseData goodsAddNum( |
||||||
|
@RequestParam(value = "id", required = true) Long id, HttpServletRequest request |
||||||
|
) { |
||||||
|
try { |
||||||
|
|
||||||
|
// 用户
|
||||||
|
SessionObject sessionObject = userCenter.getSessionObject(request); |
||||||
|
HighUserModel userInfoModel = (HighUserModel) sessionObject.getObject(); |
||||||
|
|
||||||
|
GoodsShoppingCart shoppingCart = shoppingCartService.findShoppingCartById(id); |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (shoppingCart == null) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到相关信息"); |
||||||
|
} |
||||||
|
|
||||||
|
if (!Objects.equals(userInfoModel.getHighUser().getId(), shoppingCart.getUserId())) { |
||||||
|
log.error("GoodsDetailController -> findGoodsDetailById() error!"); |
||||||
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "用户信息错误"); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
shoppingCart.setNum(String.valueOf(Integer.parseInt(shoppingCart.getNum())+1)); |
||||||
|
shoppingCart.setUpdateTime(new Date()); |
||||||
|
|
||||||
|
return ResponseMsgUtil.success("增加成功"); |
||||||
|
|
||||||
|
} catch (Exception e) { |
||||||
|
log.error("GoodsDetailController --> findGoodsDetailById() error!", e); |
||||||
|
return ResponseMsgUtil.exception(e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,38 @@ |
|||||||
|
package com.hai.goods.model; |
||||||
|
|
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
public class GoodsModel extends GoodsDetail { |
||||||
|
|
||||||
|
private BigDecimal price; |
||||||
|
|
||||||
|
private BigDecimal originalPrice; |
||||||
|
|
||||||
|
private Boolean whetherMultiple; |
||||||
|
|
||||||
|
public BigDecimal getPrice() { |
||||||
|
return price; |
||||||
|
} |
||||||
|
|
||||||
|
public void setPrice(BigDecimal price) { |
||||||
|
this.price = price; |
||||||
|
} |
||||||
|
|
||||||
|
public BigDecimal getOriginalPrice() { |
||||||
|
return originalPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public void setOriginalPrice(BigDecimal originalPrice) { |
||||||
|
this.originalPrice = originalPrice; |
||||||
|
} |
||||||
|
|
||||||
|
public Boolean getWhetherMultiple() { |
||||||
|
return whetherMultiple; |
||||||
|
} |
||||||
|
|
||||||
|
public void setWhetherMultiple(Boolean whetherMultiple) { |
||||||
|
this.whetherMultiple = whetherMultiple; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,16 @@ |
|||||||
|
package com.hai.goods.model; |
||||||
|
|
||||||
|
import com.hai.entity.GoodsShoppingCart; |
||||||
|
|
||||||
|
public class ShoppingCartModel extends GoodsShoppingCart { |
||||||
|
|
||||||
|
private String skuName; |
||||||
|
|
||||||
|
public String getSkuName() { |
||||||
|
return skuName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setSkuName(String skuName) { |
||||||
|
this.skuName = skuName; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,58 @@ |
|||||||
|
package com.hai.goods.service; |
||||||
|
|
||||||
|
import com.hai.entity.ApiMchProduct; |
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @serviceName GoodsDetailService.java |
||||||
|
* @author Sum1Dream |
||||||
|
* @version 1.0.0 |
||||||
|
* @Description // 商品详情业务
|
||||||
|
* @createTime 15:00 2023/4/11 |
||||||
|
**/ |
||||||
|
public interface GoodsDetailService { |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name insertGoodsDetail |
||||||
|
* @Description // 新增商品详情
|
||||||
|
* @Date 15:08 2023/4/11 |
||||||
|
* @Param [goodsDetail] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void insertGoodsDetail(GoodsDetail goodsDetail); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name updateGoodsDetail |
||||||
|
* @Description // 更新商品详情
|
||||||
|
* @Date 15:14 2023/4/11 |
||||||
|
* @Param [goodsDetail] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void updateGoodsDetail(GoodsDetail goodsDetail); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name getGoodsDetailList |
||||||
|
* @Description // 查询商品列表
|
||||||
|
* @Date 15:17 2023/4/11 |
||||||
|
* @Param [map] |
||||||
|
* @Return java.util.List<com.hai.entity.GoodsDetail> |
||||||
|
*/ |
||||||
|
List<GoodsDetail> getGoodsDetailList(Map<String , Object> map); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name findGoodsDetailById |
||||||
|
* @Description // 根据id商品详情
|
||||||
|
* @Date 16:19 2023/4/11 |
||||||
|
* @Param [id] |
||||||
|
* @Return com.hai.entity.GoodsDetail |
||||||
|
*/ |
||||||
|
GoodsDetail findGoodsDetailById(Long id); |
||||||
|
} |
@ -0,0 +1,59 @@ |
|||||||
|
package com.hai.goods.service; |
||||||
|
|
||||||
|
import com.hai.entity.GoodsSku; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @serviceName GoodsSkuService.java |
||||||
|
* @author Sum1Dream |
||||||
|
* @version 1.0.0 |
||||||
|
* @Description // 商品sku业务
|
||||||
|
* @createTime 18:03 2023/4/12 |
||||||
|
**/ |
||||||
|
public interface GoodsSkuService { |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name insertGoodsSku |
||||||
|
* @Description // 新增商品SKu
|
||||||
|
* @Date 15:08 2023/4/11 |
||||||
|
* @Param [GoodsSku] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void insertGoodsSku(GoodsSku goodsSku); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name updateGoodsSku |
||||||
|
* @Description // 更新商品SKu
|
||||||
|
* @Date 15:14 2023/4/11 |
||||||
|
* @Param [GoodsSku] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void updateGoodsSku(GoodsSku goodsSku); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name getGoodsSkuList |
||||||
|
* @Description // 查询商品SKu列表
|
||||||
|
* @Date 15:17 2023/4/11 |
||||||
|
* @Param [map] |
||||||
|
* @Return java.util.List<com.hai.entity.GoodsSku> |
||||||
|
*/ |
||||||
|
List<GoodsSku> getGoodsSkuList(Map<String , Object> map); |
||||||
|
|
||||||
|
List<GoodsSku> getGoodsSkuList(Long goodsId); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name findGoodsSkuById |
||||||
|
* @Description // 根据id商品SKu
|
||||||
|
* @Date 16:19 2023/4/11 |
||||||
|
* @Param [id] |
||||||
|
* @Return com.hai.entity.GoodsSku |
||||||
|
*/ |
||||||
|
GoodsSku findGoodsSkuById(Long id); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,68 @@ |
|||||||
|
package com.hai.goods.service; |
||||||
|
|
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
import com.hai.entity.GoodsShoppingCart; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @serviceName ShoppingCartService.java |
||||||
|
* @author Sum1Dream |
||||||
|
* @version 1.0.0 |
||||||
|
* @Description // 购物车业务
|
||||||
|
* @createTime 15:06 2023/4/13 |
||||||
|
**/ |
||||||
|
public interface ShoppingCartService { |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name insertShoppingCart |
||||||
|
* @Description // 新增购物车
|
||||||
|
* @Date 15:08 2023/4/11 |
||||||
|
* @Param [shoppingCart] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void insertShoppingCart(GoodsShoppingCart shoppingCart); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name updateShoppingCart |
||||||
|
* @Description // 更新购物车
|
||||||
|
* @Date 15:14 2023/4/11 |
||||||
|
* @Param [shoppingCart] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void updateShoppingCart(GoodsShoppingCart shoppingCart); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name getShoppingCartList |
||||||
|
* @Description // 查询购物车列表
|
||||||
|
* @Date 15:17 2023/4/11 |
||||||
|
* @Param [map] |
||||||
|
* @Return java.util.List<com.hai.entity.GoodsDetail> |
||||||
|
*/ |
||||||
|
List<GoodsShoppingCart> getShoppingCartList(Map<String , Object> map); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name findGoodsDetailById |
||||||
|
* @Description // 查询详情
|
||||||
|
* @Date 16:19 2023/4/11 |
||||||
|
* @Param [id] |
||||||
|
* @Return com.hai.entity.GoodsDetail |
||||||
|
*/ |
||||||
|
GoodsShoppingCart findShoppingCartById(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* @Author Sum1Dream |
||||||
|
* @Name DeleteShoppingCart |
||||||
|
* @Description // 删除购物车
|
||||||
|
* @Date 15:09 2023/4/13 |
||||||
|
* @Param [id] |
||||||
|
* @Return void |
||||||
|
*/ |
||||||
|
void deleteShoppingCart(Long id); |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package com.hai.goods.service.impl; |
||||||
|
|
||||||
|
import com.hai.dao.GoodsDetailMapper; |
||||||
|
import com.hai.entity.ApiMerchantsExample; |
||||||
|
import com.hai.entity.GoodsDetail; |
||||||
|
import com.hai.entity.GoodsDetailExample; |
||||||
|
import com.hai.goods.service.GoodsDetailService; |
||||||
|
import org.apache.commons.collections4.MapUtils; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
|
||||||
|
@Service("goodsDetailService") |
||||||
|
public class GoodsDetailServiceImpl implements GoodsDetailService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsDetailMapper goodsDetailMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public void insertGoodsDetail(GoodsDetail goodsDetail) { |
||||||
|
goodsDetailMapper.insert(goodsDetail); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateGoodsDetail(GoodsDetail goodsDetail) { |
||||||
|
goodsDetailMapper.updateByPrimaryKey(goodsDetail); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public List<GoodsDetail> getGoodsDetailList(Map<String, Object> map) { |
||||||
|
|
||||||
|
GoodsDetailExample example = new GoodsDetailExample(); |
||||||
|
GoodsDetailExample.Criteria criteria = example.createCriteria(); |
||||||
|
|
||||||
|
if (MapUtils.getString(map, "name") != null) { |
||||||
|
criteria.andNameLike("%" + MapUtils.getString(map, "name") + "%"); |
||||||
|
} |
||||||
|
if (MapUtils.getLong(map, "goodsType") != null) { |
||||||
|
criteria.andGoodsTypeEqualTo(MapUtils.getLong(map, "goodsType") ); |
||||||
|
} |
||||||
|
if (MapUtils.getInteger(map, "status") != null) { |
||||||
|
criteria.andStatusEqualTo(MapUtils.getInteger(map, "status") ); |
||||||
|
} else { |
||||||
|
criteria.andStatusNotEqualTo(0); |
||||||
|
} |
||||||
|
return goodsDetailMapper.selectByExample(example); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public GoodsDetail findGoodsDetailById(Long id) { |
||||||
|
return goodsDetailMapper.selectByPrimaryKey(id); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,64 @@ |
|||||||
|
package com.hai.goods.service.impl; |
||||||
|
|
||||||
|
import com.hai.dao.GoodsSkuMapper; |
||||||
|
import com.hai.entity.GoodsDetailExample; |
||||||
|
import com.hai.entity.GoodsSku; |
||||||
|
import com.hai.entity.GoodsSkuExample; |
||||||
|
import com.hai.goods.service.GoodsSkuService; |
||||||
|
import org.apache.commons.collections4.MapUtils; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
@Service("goodsSkuService") |
||||||
|
public class GoodsSkuServiceImpl implements GoodsSkuService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsSkuMapper goodsSkuMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public void insertGoodsSku(GoodsSku goodsSku) { |
||||||
|
goodsSkuMapper.insert(goodsSku); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateGoodsSku(GoodsSku goodsSku) { |
||||||
|
goodsSkuMapper.updateByPrimaryKey(goodsSku); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public List<GoodsSku> getGoodsSkuList(Map<String, Object> map) { |
||||||
|
GoodsSkuExample example = new GoodsSkuExample(); |
||||||
|
GoodsSkuExample.Criteria criteria = example.createCriteria(); |
||||||
|
|
||||||
|
if (MapUtils.getString(map, "name") != null) { |
||||||
|
criteria.andNameLike("%" + MapUtils.getString(map, "name") + "%"); |
||||||
|
} |
||||||
|
if (MapUtils.getInteger(map, "status") != null) { |
||||||
|
criteria.andStatusEqualTo(MapUtils.getInteger(map, "status") ); |
||||||
|
} else { |
||||||
|
criteria.andStatusNotEqualTo(0); |
||||||
|
} |
||||||
|
if (MapUtils.getLong(map, "goodsId") != null) { |
||||||
|
criteria.andGoodsIdEqualTo(MapUtils.getLong(map, "goodsId") ); |
||||||
|
} |
||||||
|
|
||||||
|
return goodsSkuMapper.selectByExample(example); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public List<GoodsSku> getGoodsSkuList(Long goodsId) { |
||||||
|
GoodsSkuExample example = new GoodsSkuExample(); |
||||||
|
GoodsSkuExample.Criteria criteria = example.createCriteria(); |
||||||
|
criteria.andGoodsIdEqualTo(goodsId).andStatusEqualTo(1); |
||||||
|
|
||||||
|
return goodsSkuMapper.selectByExample(example); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public GoodsSku findGoodsSkuById(Long id) { |
||||||
|
return goodsSkuMapper.selectByPrimaryKey(id); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,51 @@ |
|||||||
|
package com.hai.goods.service.impl; |
||||||
|
|
||||||
|
import com.hai.dao.GoodsShoppingCartMapper; |
||||||
|
import com.hai.entity.GoodsShoppingCart; |
||||||
|
import com.hai.entity.GoodsShoppingCartExample; |
||||||
|
import com.hai.goods.service.ShoppingCartService; |
||||||
|
import org.apache.commons.collections4.MapUtils; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
@Service("shoppingCartService") |
||||||
|
public class ShoppingCartServiceImpl implements ShoppingCartService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private GoodsShoppingCartMapper shoppingCartMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public void insertShoppingCart(GoodsShoppingCart shoppingCart) { |
||||||
|
shoppingCartMapper.insert(shoppingCart); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateShoppingCart(GoodsShoppingCart shoppingCart) { |
||||||
|
shoppingCartMapper.updateByPrimaryKey(shoppingCart); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public List<GoodsShoppingCart> getShoppingCartList(Map<String, Object> map) { |
||||||
|
GoodsShoppingCartExample example = new GoodsShoppingCartExample(); |
||||||
|
GoodsShoppingCartExample.Criteria criteria = example.createCriteria(); |
||||||
|
|
||||||
|
if (MapUtils.getLong(map, "userId") != null) { |
||||||
|
criteria.andUserIdEqualTo(MapUtils.getLong(map, "userId")); |
||||||
|
} |
||||||
|
|
||||||
|
return shoppingCartMapper.selectByExample(example); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public GoodsShoppingCart findShoppingCartById(Long id) { |
||||||
|
return shoppingCartMapper.selectByPrimaryKey(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteShoppingCart(Long id) { |
||||||
|
shoppingCartMapper.deleteByPrimaryKey(id); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue