From 898a452132dcdb337d9fbf1e0e67872d05034559 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期二, 23 九月 2025 11:10:19 +0800 Subject: [PATCH] 操作日志 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsController.java | 54 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 49 insertions(+), 5 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsController.java index bcdbc55..4718de7 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsController.java @@ -1,15 +1,17 @@ package com.ruoyi.web.controller.api; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import com.ruoyi.common.annotation.Log; import com.ruoyi.common.basic.PageInfo; import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.common.utils.CodeGenerateUtils; import com.ruoyi.common.utils.bean.BeanUtils; import com.ruoyi.framework.web.service.TokenService; -import com.ruoyi.system.domain.TGoods; -import com.ruoyi.system.domain.TGoodsType; +import com.ruoyi.system.domain.*; import com.ruoyi.system.query.TGoodsQuery; -import com.ruoyi.system.service.TGoodsService; -import com.ruoyi.system.service.TGoodsTypeService; +import com.ruoyi.system.service.*; import com.ruoyi.system.vo.TGoodsVO; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; @@ -35,12 +37,18 @@ private final TGoodsService goodsService; private final TGoodsTypeService goodsTypeService; private final TokenService tokenService; + private final TOrderStockGoodsService orderStockGoodsService; + private final TOrderSaleGoodsService orderSaleGoodsService; + private final TOrderMealGoodsService orderMealGoodsService; @Autowired - public TGoodsController(TGoodsService goodsService, TGoodsTypeService goodsTypeService, TokenService tokenService) { + public TGoodsController(TGoodsService goodsService, TGoodsTypeService goodsTypeService, TokenService tokenService, TOrderStockGoodsService orderStockGoodsService, TOrderSaleGoodsService orderSaleGoodsService, TOrderMealGoodsService orderMealGoodsService) { this.goodsService = goodsService; this.goodsTypeService = goodsTypeService; this.tokenService = tokenService; + this.orderStockGoodsService = orderStockGoodsService; + this.orderSaleGoodsService = orderSaleGoodsService; + this.orderMealGoodsService = orderMealGoodsService; } /** @@ -59,19 +67,46 @@ /** * 添加商品管理管理 */ + @Log(title = "商品管理-添加商品管理", businessType = BusinessType.INSERT) @ApiOperation( value = "添加商品管理") @PostMapping(value = "/add") public AjaxResult<Boolean> add(@RequestBody TGoods dto) { dto.setShopId(tokenService.getLoginUser().getObjectId()); + String num = CodeGenerateUtils.generateVolumeSn(); + long count = goodsService.count(Wrappers.lambdaQuery(TGoods.class) + .eq(TGoods::getGoodsNum, num)); + if(count>0){ + num = CodeGenerateUtils.generateVolumeSn(); + } + dto.setGoodsNum(num); return AjaxResult.success(goodsService.save(dto)); } /** * 修改商品管理 */ + @Log(title = "商品管理-修改商品管理", businessType = BusinessType.UPDATE) @ApiOperation( value = "修改商品管理") @PostMapping(value = "/update") public AjaxResult<Boolean> update(@RequestBody TGoods dto) { + // 判断是否修改了名称 + TGoods goods = goodsService.getById(dto.getId()); + if(!goods.getGoodsName().equals(dto.getGoodsName())){ + List<TOrderStockGoods> orderStockGoods = orderStockGoodsService.list(Wrappers.lambdaQuery(TOrderStockGoods.class) + .eq(TOrderStockGoods::getGoodsNum, goods.getGoodsNum())); + orderStockGoods.stream().forEach(tOrderStockGoods -> tOrderStockGoods.setGoodsName(dto.getGoodsName())); + orderStockGoodsService.updateBatchById(orderStockGoods); + + List<TOrderMealGoods> orderMealGoods = orderMealGoodsService.list(Wrappers.lambdaQuery(TOrderMealGoods.class) + .eq(TOrderMealGoods::getGoodsNum, goods.getGoodsNum())); + orderMealGoods.stream().forEach(tOrderMealGoods -> tOrderMealGoods.setGoodsName(dto.getGoodsName())); + orderMealGoodsService.updateBatchById(orderMealGoods); + + List<TOrderSaleGoods> list = orderSaleGoodsService.list(Wrappers.lambdaQuery(TOrderSaleGoods.class) + .eq(TOrderSaleGoods::getGoodsNum, goods.getGoodsNum())); + list.stream().forEach(tOrderSaleGoods -> tOrderSaleGoods.setGoodsName(dto.getGoodsName())); + orderSaleGoodsService.updateBatchById(list); + } return AjaxResult.success(goodsService.updateById(dto)); } @@ -94,15 +129,24 @@ /** * 删除商品管理 */ + @Log(title = "商品管理-删除商品管理", businessType = BusinessType.DELETE) @ApiOperation( value = "删除商品管理") @DeleteMapping(value = "/deleteById") public AjaxResult<Boolean> deleteById(@RequestParam("id") Long id) { + TGoods goods = goodsService.getById(id); + long count = goodsService.count(Wrappers.lambdaQuery(TGoods.class) + .eq(TGoods::getTypeId, goods.getTypeId()) + .ne(TGoods::getId,id)); + if(count == 0){ + return AjaxResult.error("当前菜品所属分类下至少保留一种菜品"); + } return AjaxResult.success(goodsService.removeById(id)); } /** * 批量删除商品管理 */ + @Log(title = "商品管理-批量删除商品管理", businessType = BusinessType.DELETE) @ApiOperation( value = "批量删除商品管理") @DeleteMapping(value = "/deleteByIds") public AjaxResult<Boolean> deleteByIds(@RequestBody List<Long> ids) { -- Gitblit v1.7.1