修复首次发布商品不会生成商品索引问题;代码优化;修复bug;
This commit is contained in:
parent
eb25827937
commit
b648aa94b3
@ -8,7 +8,7 @@ import cn.hutool.json.JSONObject;
|
|||||||
import cn.hutool.json.JSONUtil;
|
import cn.hutool.json.JSONUtil;
|
||||||
import cn.lili.event.GoodsCommentCompleteEvent;
|
import cn.lili.event.GoodsCommentCompleteEvent;
|
||||||
import cn.lili.modules.distribution.entity.dos.DistributionGoods;
|
import cn.lili.modules.distribution.entity.dos.DistributionGoods;
|
||||||
import cn.lili.modules.distribution.entity.dos.DistributionSelectedGoods;
|
import cn.lili.modules.distribution.entity.dto.DistributionGoodsSearchParams;
|
||||||
import cn.lili.modules.distribution.service.DistributionGoodsService;
|
import cn.lili.modules.distribution.service.DistributionGoodsService;
|
||||||
import cn.lili.modules.distribution.service.DistributionSelectedGoodsService;
|
import cn.lili.modules.distribution.service.DistributionSelectedGoodsService;
|
||||||
import cn.lili.modules.goods.entity.dos.*;
|
import cn.lili.modules.goods.entity.dos.*;
|
||||||
@ -31,8 +31,6 @@ import cn.lili.modules.search.entity.dos.EsGoodsIndex;
|
|||||||
import cn.lili.modules.search.service.EsGoodsIndexService;
|
import cn.lili.modules.search.service.EsGoodsIndexService;
|
||||||
import cn.lili.modules.store.service.StoreService;
|
import cn.lili.modules.store.service.StoreService;
|
||||||
import cn.lili.rocketmq.tags.GoodsTagsEnum;
|
import cn.lili.rocketmq.tags.GoodsTagsEnum;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.rocketmq.common.message.MessageExt;
|
import org.apache.rocketmq.common.message.MessageExt;
|
||||||
import org.apache.rocketmq.spring.annotation.RocketMQMessageListener;
|
import org.apache.rocketmq.spring.annotation.RocketMQMessageListener;
|
||||||
@ -258,7 +256,10 @@ public class GoodsMessageListener implements RocketMQListener<MessageExt> {
|
|||||||
List<EsGoodsIndex> goodsIndices = new ArrayList<>();
|
List<EsGoodsIndex> goodsIndices = new ArrayList<>();
|
||||||
for (Goods goods : goodsList) {
|
for (Goods goods : goodsList) {
|
||||||
//如果商品通过审核&&并且已上架
|
//如果商品通过审核&&并且已上架
|
||||||
List<GoodsSku> goodsSkuList = this.goodsSkuService.list(new LambdaQueryWrapper<GoodsSku>().eq(GoodsSku::getGoodsId, goods.getId()).gt(GoodsSku::getQuantity, 0));
|
GoodsSearchParams searchParams = new GoodsSearchParams();
|
||||||
|
searchParams.setGoodsId(goods.getId());
|
||||||
|
searchParams.setGeQuantity(0);
|
||||||
|
List<GoodsSku> goodsSkuList = this.goodsSkuService.getGoodsSkuByList(searchParams);
|
||||||
if (goods.getAuthFlag().equals(GoodsAuthEnum.PASS.name())
|
if (goods.getAuthFlag().equals(GoodsAuthEnum.PASS.name())
|
||||||
&& goods.getMarketEnable().equals(GoodsStatusEnum.UPPER.name())
|
&& goods.getMarketEnable().equals(GoodsStatusEnum.UPPER.name())
|
||||||
&& Boolean.FALSE.equals(goods.getDeleteFlag())) {
|
&& Boolean.FALSE.equals(goods.getDeleteFlag())) {
|
||||||
@ -287,7 +288,9 @@ public class GoodsMessageListener implements RocketMQListener<MessageExt> {
|
|||||||
*/
|
*/
|
||||||
private void updateGoodsIndex(Goods goods) {
|
private void updateGoodsIndex(Goods goods) {
|
||||||
//如果商品通过审核&&并且已上架
|
//如果商品通过审核&&并且已上架
|
||||||
List<GoodsSku> goodsSkuList = this.goodsSkuService.list(new LambdaQueryWrapper<GoodsSku>().eq(GoodsSku::getGoodsId, goods.getId()));
|
GoodsSearchParams searchParams = new GoodsSearchParams();
|
||||||
|
searchParams.setGoodsId(goods.getId());
|
||||||
|
List<GoodsSku> goodsSkuList = this.goodsSkuService.getGoodsSkuByList(searchParams);
|
||||||
if (goods.getAuthFlag().equals(GoodsAuthEnum.PASS.name())
|
if (goods.getAuthFlag().equals(GoodsAuthEnum.PASS.name())
|
||||||
&& goods.getMarketEnable().equals(GoodsStatusEnum.UPPER.name())
|
&& goods.getMarketEnable().equals(GoodsStatusEnum.UPPER.name())
|
||||||
&& Boolean.FALSE.equals(goods.getDeleteFlag())) {
|
&& Boolean.FALSE.equals(goods.getDeleteFlag())) {
|
||||||
@ -373,16 +376,19 @@ public class GoodsMessageListener implements RocketMQListener<MessageExt> {
|
|||||||
private void deleteGoods(MessageExt messageExt) {
|
private void deleteGoods(MessageExt messageExt) {
|
||||||
Goods goods = JSONUtil.toBean(new String(messageExt.getBody()), Goods.class);
|
Goods goods = JSONUtil.toBean(new String(messageExt.getBody()), Goods.class);
|
||||||
|
|
||||||
|
DistributionGoodsSearchParams searchParams = new DistributionGoodsSearchParams();
|
||||||
|
searchParams.setGoodsId(goods.getId());
|
||||||
//删除获取分销商品
|
//删除获取分销商品
|
||||||
DistributionGoods distributionGoods = distributionGoodsService.getOne(new LambdaQueryWrapper<DistributionGoods>()
|
DistributionGoods distributionGoods = distributionGoodsService.getDistributionGoods(searchParams);
|
||||||
.eq(DistributionGoods::getGoodsId, goods.getId()));
|
|
||||||
|
|
||||||
//删除分销商品绑定关系
|
if (distributionGoods != null) {
|
||||||
distributionSelectedGoodsService.remove(new LambdaQueryWrapper<DistributionSelectedGoods>()
|
|
||||||
.eq(DistributionSelectedGoods::getDistributionGoodsId, distributionGoods.getId()));
|
|
||||||
|
|
||||||
//删除分销商品
|
//删除分销商品绑定关系
|
||||||
distributionGoodsService.removeById(distributionGoods.getId());
|
distributionSelectedGoodsService.deleteByDistributionGoodsId(distributionGoods.getId());
|
||||||
|
|
||||||
|
//删除分销商品
|
||||||
|
distributionGoodsService.removeById(distributionGoods.getId());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -421,9 +427,7 @@ public class GoodsMessageListener implements RocketMQListener<MessageExt> {
|
|||||||
goods.setBuyCount(0);
|
goods.setBuyCount(0);
|
||||||
}
|
}
|
||||||
int buyCount = goods.getBuyCount() + goodsCompleteMessage.getBuyNum();
|
int buyCount = goods.getBuyCount() + goodsCompleteMessage.getBuyNum();
|
||||||
goodsService.update(new LambdaUpdateWrapper<Goods>()
|
this.goodsService.updateGoodsBuyCount(goodsCompleteMessage.getGoodsId(), buyCount);
|
||||||
.eq(Goods::getId, goodsCompleteMessage.getGoodsId())
|
|
||||||
.set(Goods::getBuyCount, buyCount));
|
|
||||||
} else {
|
} else {
|
||||||
log.error("商品Id为[" + goodsCompleteMessage.getGoodsId() + "的商品不存在,更新商品失败!");
|
log.error("商品Id为[" + goodsCompleteMessage.getGoodsId() + "的商品不存在,更新商品失败!");
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
package cn.lili.modules.distribution.entity.dto;
|
package cn.lili.modules.distribution.entity.dto;
|
||||||
|
|
||||||
|
import cn.hutool.core.text.CharSequenceUtil;
|
||||||
import cn.lili.common.security.context.UserContext;
|
import cn.lili.common.security.context.UserContext;
|
||||||
import cn.lili.common.utils.StringUtils;
|
import cn.lili.common.utils.StringUtils;
|
||||||
import cn.lili.common.vo.PageVO;
|
import cn.lili.common.vo.PageVO;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分销员商品查询条件
|
* 分销员商品查询条件
|
||||||
@ -13,15 +15,25 @@ import lombok.Data;
|
|||||||
* @author pikachu
|
* @author pikachu
|
||||||
* @since 2020-03-14 23:04:56
|
* @since 2020-03-14 23:04:56
|
||||||
*/
|
*/
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
@Data
|
@Data
|
||||||
public class DistributionGoodsSearchParams extends PageVO {
|
public class DistributionGoodsSearchParams extends PageVO {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "商品ID")
|
||||||
|
private String goodsId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "商品名称")
|
@ApiModelProperty(value = "商品名称")
|
||||||
private String goodsName;
|
private String goodsName;
|
||||||
|
|
||||||
@ApiModelProperty(value = "是否已选择")
|
@ApiModelProperty(value = "是否已选择")
|
||||||
private boolean isChecked;
|
private boolean isChecked;
|
||||||
|
|
||||||
|
public <T> QueryWrapper<T> queryWrapper() {
|
||||||
|
QueryWrapper<T> queryWrapper = this.distributionQueryWrapper();
|
||||||
|
queryWrapper.eq(CharSequenceUtil.isNotEmpty(goodsId), "goods_id", goodsId);
|
||||||
|
queryWrapper.eq(CharSequenceUtil.isNotEmpty(goodsName), "goods_name", goodsId);
|
||||||
|
return queryWrapper;
|
||||||
|
}
|
||||||
|
|
||||||
public <T> QueryWrapper<T> storeQueryWrapper() {
|
public <T> QueryWrapper<T> storeQueryWrapper() {
|
||||||
QueryWrapper<T> queryWrapper = this.distributionQueryWrapper();
|
QueryWrapper<T> queryWrapper = this.distributionQueryWrapper();
|
||||||
|
@ -21,10 +21,34 @@ public interface DistributionGoodsService extends IService<DistributionGoods> {
|
|||||||
* 根据条件分页查询分销商品信息
|
* 根据条件分页查询分销商品信息
|
||||||
*
|
*
|
||||||
* @param distributionGoodsSearchParams 商品条件
|
* @param distributionGoodsSearchParams 商品条件
|
||||||
* @return
|
* @return 分页分销商品信息
|
||||||
*/
|
*/
|
||||||
IPage<DistributionGoodsVO> goodsPage(DistributionGoodsSearchParams distributionGoodsSearchParams);
|
IPage<DistributionGoodsVO> goodsPage(DistributionGoodsSearchParams distributionGoodsSearchParams);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据条件查询分销商品信息列表
|
||||||
|
*
|
||||||
|
* @param distributionGoodsSearchParams 条件
|
||||||
|
* @return 分销商品信息列表
|
||||||
|
*/
|
||||||
|
List<DistributionGoods> getDistributionGoodsList(DistributionGoodsSearchParams distributionGoodsSearchParams);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据条件查询分销商品信息
|
||||||
|
*
|
||||||
|
* @param distributionGoodsSearchParams 条件
|
||||||
|
* @return 分销商品信息
|
||||||
|
*/
|
||||||
|
DistributionGoods getDistributionGoods(DistributionGoodsSearchParams distributionGoodsSearchParams);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据条件删除分销商品
|
||||||
|
*
|
||||||
|
* @param distributionGoodsSearchParams 条件
|
||||||
|
*/
|
||||||
|
boolean deleteDistributionGoods(DistributionGoodsSearchParams distributionGoodsSearchParams);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取分销商品
|
* 获取分销商品
|
||||||
*
|
*
|
||||||
|
@ -23,4 +23,11 @@ public interface DistributionSelectedGoodsService extends IService<DistributionS
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
boolean delete(String distributionGoodsId);
|
boolean delete(String distributionGoodsId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分销员添加分销商品
|
||||||
|
* @param distributionGoodsId 分销商品ID
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
boolean deleteByDistributionGoodsId(String distributionGoodsId);
|
||||||
}
|
}
|
||||||
|
@ -70,6 +70,38 @@ public class DistributionGoodsServiceImpl extends ServiceImpl<DistributionGoodsM
|
|||||||
return this.baseMapper.getDistributionGoodsVO(PageUtil.initPage(searchParams), searchParams.distributionQueryWrapper());
|
return this.baseMapper.getDistributionGoodsVO(PageUtil.initPage(searchParams), searchParams.distributionQueryWrapper());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据条件查询分销商品信息列表
|
||||||
|
*
|
||||||
|
* @param distributionGoodsSearchParams 商品条件
|
||||||
|
* @return 分销商品信息列表
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<DistributionGoods> getDistributionGoodsList(DistributionGoodsSearchParams distributionGoodsSearchParams) {
|
||||||
|
return this.list(distributionGoodsSearchParams.queryWrapper());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据条件查询分销商品信息
|
||||||
|
*
|
||||||
|
* @param distributionGoodsSearchParams 条件
|
||||||
|
* @return 分销商品信息
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public DistributionGoods getDistributionGoods(DistributionGoodsSearchParams distributionGoodsSearchParams) {
|
||||||
|
return this.getOne(distributionGoodsSearchParams.queryWrapper(), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据条件删除分销商品
|
||||||
|
*
|
||||||
|
* @param distributionGoodsSearchParams 条件
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean deleteDistributionGoods(DistributionGoodsSearchParams distributionGoodsSearchParams) {
|
||||||
|
return this.remove(distributionGoodsSearchParams.queryWrapper());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DistributionGoods distributionGoodsVO(String id) {
|
public DistributionGoods distributionGoodsVO(String id) {
|
||||||
|
|
||||||
|
@ -46,4 +46,16 @@ public class DistributionSelectedGoodsServiceImpl extends ServiceImpl<Distributi
|
|||||||
.eq(DistributionSelectedGoods::getDistributionGoodsId, distributionGoodsId)
|
.eq(DistributionSelectedGoods::getDistributionGoodsId, distributionGoodsId)
|
||||||
.eq(DistributionSelectedGoods::getDistributionId, distributionId));
|
.eq(DistributionSelectedGoods::getDistributionId, distributionId));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分销员添加分销商品
|
||||||
|
*
|
||||||
|
* @param distributionGoodsId 商品ID
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean deleteByDistributionGoodsId(String distributionGoodsId) {
|
||||||
|
return this.remove(new LambdaQueryWrapper<DistributionSelectedGoods>()
|
||||||
|
.eq(DistributionSelectedGoods::getDistributionGoodsId, distributionGoodsId));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,10 @@ public class GoodsSearchParams extends PageVO {
|
|||||||
private String authFlag;
|
private String authFlag;
|
||||||
|
|
||||||
@ApiModelProperty(value = "库存数量")
|
@ApiModelProperty(value = "库存数量")
|
||||||
private Integer quantity;
|
private Integer leQuantity;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "库存数量")
|
||||||
|
private Integer geQuantity;
|
||||||
|
|
||||||
@ApiModelProperty(value = "是否为推荐商品")
|
@ApiModelProperty(value = "是否为推荐商品")
|
||||||
private Boolean recommend;
|
private Boolean recommend;
|
||||||
@ -106,8 +109,11 @@ public class GoodsSearchParams extends PageVO {
|
|||||||
if (CharSequenceUtil.isNotEmpty(authFlag)) {
|
if (CharSequenceUtil.isNotEmpty(authFlag)) {
|
||||||
queryWrapper.eq("auth_flag", authFlag);
|
queryWrapper.eq("auth_flag", authFlag);
|
||||||
}
|
}
|
||||||
if (quantity != null) {
|
if (leQuantity != null) {
|
||||||
queryWrapper.le("quantity", quantity);
|
queryWrapper.le("quantity", leQuantity);
|
||||||
|
}
|
||||||
|
if (geQuantity != null) {
|
||||||
|
queryWrapper.ge("quantity", geQuantity);
|
||||||
}
|
}
|
||||||
if (recommend != null) {
|
if (recommend != null) {
|
||||||
queryWrapper.le("recommend", recommend);
|
queryWrapper.le("recommend", recommend);
|
||||||
|
@ -147,12 +147,20 @@ public interface GoodsService extends IService<Goods> {
|
|||||||
void updateStock(String goodsId, Integer quantity);
|
void updateStock(String goodsId, Integer quantity);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新SKU评价数量
|
* 更新商品评价数量
|
||||||
*
|
*
|
||||||
* @param goodsId 商品ID
|
* @param goodsId 商品ID
|
||||||
*/
|
*/
|
||||||
void updateGoodsCommentNum(String goodsId);
|
void updateGoodsCommentNum(String goodsId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新商品的购买数量
|
||||||
|
*
|
||||||
|
* @param goodsId 商品ID
|
||||||
|
* @param buyCount 购买数量
|
||||||
|
*/
|
||||||
|
void updateGoodsBuyCount(String goodsId, int buyCount);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量更新商品的店铺信息
|
* 批量更新商品的店铺信息
|
||||||
* @param store
|
* @param store
|
||||||
|
@ -406,6 +406,19 @@ public class GoodsServiceImpl extends ServiceImpl<GoodsMapper, Goods> implements
|
|||||||
this.updateById(goods);
|
this.updateById(goods);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新商品的购买数量
|
||||||
|
*
|
||||||
|
* @param goodsId 商品ID
|
||||||
|
* @param buyCount 购买数量
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void updateGoodsBuyCount(String goodsId, int buyCount) {
|
||||||
|
this.update(new LambdaUpdateWrapper<Goods>()
|
||||||
|
.eq(Goods::getId, goodsId)
|
||||||
|
.set(Goods::getBuyCount, buyCount));
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateStoreDetail(Store store) {
|
public void updateStoreDetail(Store store) {
|
||||||
UpdateWrapper updateWrapper = new UpdateWrapper<>()
|
UpdateWrapper updateWrapper = new UpdateWrapper<>()
|
||||||
|
@ -2,6 +2,7 @@ package cn.lili.modules.goods.serviceimpl;
|
|||||||
|
|
||||||
import cn.hutool.core.convert.Convert;
|
import cn.hutool.core.convert.Convert;
|
||||||
import cn.hutool.core.map.MapUtil;
|
import cn.hutool.core.map.MapUtil;
|
||||||
|
import cn.hutool.core.thread.ThreadUtil;
|
||||||
import cn.hutool.core.util.NumberUtil;
|
import cn.hutool.core.util.NumberUtil;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import cn.hutool.json.JSONObject;
|
import cn.hutool.json.JSONObject;
|
||||||
@ -538,9 +539,18 @@ public class GoodsSkuServiceImpl extends ServiceImpl<GoodsSkuMapper, GoodsSku> i
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void generateEs(Goods goods) {
|
public void generateEs(Goods goods) {
|
||||||
String destination = rocketmqCustomProperties.getGoodsTopic() + ":" + GoodsTagsEnum.GENERATOR_GOODS_INDEX.name();
|
ThreadUtil.execAsync(() -> {
|
||||||
//发送mq消息
|
try {
|
||||||
rocketMQTemplate.asyncSend(destination, goods.getId(), RocketmqSendCallbackBuilder.commonCallback());
|
// 延时执行,防止商品未保存完成就去生成商品索引导致生成索引时找不到商品问题
|
||||||
|
Thread.sleep(2000);
|
||||||
|
String destination = rocketmqCustomProperties.getGoodsTopic() + ":" + GoodsTagsEnum.GENERATOR_GOODS_INDEX.name();
|
||||||
|
//发送mq消息
|
||||||
|
rocketMQTemplate.asyncSend(destination, goods.getId(), RocketmqSendCallbackBuilder.commonCallback());
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
log.error("发送商品索引信息失败!", e);
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -92,7 +92,6 @@ public class StoreDetail extends BaseIdEntity {
|
|||||||
@ApiModelProperty(value = "营业执照号")
|
@ApiModelProperty(value = "营业执照号")
|
||||||
private String licenseNum;
|
private String licenseNum;
|
||||||
|
|
||||||
@Size(min = 1, max = 200, message = "法定经营范围长度为1-200位字符")
|
|
||||||
@ApiModelProperty(value = "法定经营范围")
|
@ApiModelProperty(value = "法定经营范围")
|
||||||
private String scope;
|
private String scope;
|
||||||
|
|
||||||
|
@ -99,7 +99,6 @@ public class AdminStoreApplyDTO {
|
|||||||
@ApiModelProperty(value = "营业执照号")
|
@ApiModelProperty(value = "营业执照号")
|
||||||
private String licenseNum;
|
private String licenseNum;
|
||||||
|
|
||||||
@Size(min = 1, max = 200, message = "法定经营范围长度为1-200位字符")
|
|
||||||
@ApiModelProperty(value = "法定经营范围")
|
@ApiModelProperty(value = "法定经营范围")
|
||||||
private String scope;
|
private String scope;
|
||||||
|
|
||||||
|
@ -78,7 +78,6 @@ public class StoreEditDTO {
|
|||||||
@ApiModelProperty(value = "营业执照号")
|
@ApiModelProperty(value = "营业执照号")
|
||||||
private String licenseNum;
|
private String licenseNum;
|
||||||
|
|
||||||
@Size(min = 1, max = 200, message = "法定经营范围长度为1-200位字符")
|
|
||||||
@ApiModelProperty(value = "法定经营范围")
|
@ApiModelProperty(value = "法定经营范围")
|
||||||
private String scope;
|
private String scope;
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ public class GoodsStoreController {
|
|||||||
StoreDetail storeDetail = OperationalJudgment.judgment(storeDetailService.getStoreDetail(storeId));
|
StoreDetail storeDetail = OperationalJudgment.judgment(storeDetailService.getStoreDetail(storeId));
|
||||||
Integer stockWarnNum = storeDetail.getStockWarning();
|
Integer stockWarnNum = storeDetail.getStockWarning();
|
||||||
goodsSearchParams.setStoreId(storeId);
|
goodsSearchParams.setStoreId(storeId);
|
||||||
goodsSearchParams.setQuantity(stockWarnNum);
|
goodsSearchParams.setLeQuantity(stockWarnNum);
|
||||||
goodsSearchParams.setMarketEnable(GoodsStatusEnum.UPPER.name());
|
goodsSearchParams.setMarketEnable(GoodsStatusEnum.UPPER.name());
|
||||||
IPage<GoodsSku> goodsSku = goodsSkuService.getGoodsSkuByPage(goodsSearchParams);
|
IPage<GoodsSku> goodsSku = goodsSkuService.getGoodsSkuByPage(goodsSearchParams);
|
||||||
StockWarningVO stockWarning = new StockWarningVO(stockWarnNum, goodsSku);
|
StockWarningVO stockWarning = new StockWarningVO(stockWarnNum, goodsSku);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user