新增商品【内存不足,nacos超时】
/**
* 19、新增商品
* /product/spuinfo/save
*/
@RequestMapping("/save")
public R save(@RequestBody SpuSaveVo vo){
spuInfoService.saveSpuInfo(vo);
return R.ok();
}
@Transactional
@Override
public void saveSpuInfo(SpuSaveVo vo) {
//1、保存spu基本信息 pms_spu_info
SpuInfoEntity infoEntity = new SpuInfoEntity();
BeanUtils.copyProperties(vo,infoEntity);
infoEntity.setCreateTime(new Date());
infoEntity.setUpdateTime(new Date());
this.saveBaseSpuInfo(infoEntity);
//2、保存Spu的描述图片 pms_spu_info_desc
List<String> decript = vo.getDecript();
SpuInfoDescEntity descEntity = new SpuInfoDescEntity();
descEntity.setSpuId(infoEntity.getId());
descEntity.setDecript(String.join(",",decript));
spuInfoDescService.saveSpuInfoDesc(descEntity);
//3、保存spu的图片集 pms_spu_images
List<String> images = vo.getImages();
imagesService.saveImages(infoEntity.getId(),images);
//4、保存spu的规格参数;pms_product_attr_value
List<BaseAttrs> baseAttrs = vo.getBaseAttrs();
List<ProductAttrValueEntity> collect = baseAttrs.stream().map(attr -> {
ProductAttrValueEntity valueEntity = new ProductAttrValueEntity();
valueEntity.setAttrId(attr.getAttrId());
AttrEntity id = attrService.getById(attr.getAttrId());
valueEntity.setAttrName(id.getAttrName());
valueEntity.setAttrValue(attr.getAttrValues());
valueEntity.setQuickShow(attr.getShowDesc());
valueEntity.setSpuId(infoEntity.getId());
return valueEntity;
}).collect(Collectors.toList());
attrValueService.saveProductAttr(collect);
//5、保存spu的积分信息;gulimall_sms->sms_spu_bounds
Bounds bounds = vo.getBounds();
SpuBoundTo spuBoundTo = new SpuBoundTo();
BeanUtils.copyProperties(bounds,spuBoundTo);
spuBoundTo.setSpuId(infoEntity.getId());
R r = couponFeignService.saveSpuBounds(spuBoundTo);
if(r.getCode() != 0){
log.error("远程保存spu积分信息失败");
}
//5、保存当前spu对应的所有sku信息;
List<Skus> skus = vo.getSkus();
if(skus!=null && skus.size()>0){
skus.forEach(item->{
String defaultImg = "";
for (Images image : item.getImages()) {
if(image.getDefaultImg() == 1){
defaultImg = image.getImgUrl();
}
}
// private String skuName;
// private BigDecimal price;
// private String skuTitle;
// private String skuSubtitle;
SkuInfoEntity skuInfoEntity = new SkuInfoEntity();
BeanUtils.copyProperties(item,skuInfoEntity);
skuInfoEntity.setBrandId(infoEntity.getBrandId());
skuInfoEntity.setCatalogId(infoEntity.getCatalogId());
skuInfoEntity.setSaleCount(0L);
skuInfoEntity.setSpuId(infoEntity.getId());
skuInfoEntity.setSkuDefaultImg(defaultImg);
//5.1)、sku的基本信息;pms_sku_info
skuInfoService.saveSkuInfo(skuInfoEntity);
Long skuId = skuInfoEntity.getSkuId();
List<SkuImagesEntity> imagesEntities = item.getImages().stream().map(img -> {
SkuImagesEntity skuImagesEntity = new SkuImagesEntity();
skuImagesEntity.setSkuId(skuId);
skuImagesEntity.setImgUrl(img.getImgUrl());
skuImagesEntity.setDefaultImg(img.getDefaultImg());
return skuImagesEntity;
}).filter(entity->{
//返回true就是需要,false就是剔除
return !StringUtils.isEmpty(entity.getImgUrl());
}).collect(Collectors.toList());
//5.2)、sku的图片信息;pms_sku_image
skuImagesService.saveBatch(imagesEntities);
//TODO 没有图片路径的无需保存
List<Attr> attr = item.getAttr();
List<SkuSaleAttrValueEntity> skuSaleAttrValueEntities = attr.stream().map(a -> {
SkuSaleAttrValueEntity attrValueEntity = new SkuSaleAttrValueEntity();
BeanUtils.copyProperties(a, attrValueEntity);
attrValueEntity.setSkuId(skuId);
return attrValueEntity;
}).collect(Collectors.toList());
//5.3)、sku的销售属性信息:pms_sku_sale_attr_value
skuSaleAttrValueService.saveBatch(skuSaleAttrValueEntities);
// //5.4)、sku的优惠、满减等信息;gulimall_sms->sms_sku_ladder\sms_sku_full_reduction\sms_member_price
SkuReductionTo skuReductionTo = new SkuReductionTo();
BeanUtils.copyProperties(item,skuReductionTo);
skuReductionTo.setSkuId(skuId);
if(skuReductionTo.getFullCount() >0 || skuReductionTo.getFullPrice().compareTo(new BigDecimal("0")) == 1){
R r1 = couponFeignService.saveSkuReduction(skuReductionTo);
if(r1.getCode() != 0){
log.error("远程保存sku优惠信息失败");
}
}
});
}
}
添加的测试数据[json形式]
{"spuName":"神机诺基亚","spuDescription":"板砖","catalogId":225,"brandId":14,"weight":10,"publishStatus":0,"decript":["https://liyumall-yyds.oss-cn-beijing.aliyuncs.com/2024-06-02//e05a101f-4265-4198-810b-2e211b538348_749d8efdff062fb0.jpg"],"images":["https://liyumall-yyds.oss-cn-beijing.aliyuncs.com/2024-06-02//61304744-5959-4a3d-8a45-1aee6b452f64_919c850652e98031.jpg","https://liyumall-yyds.oss-cn-beijing.aliyuncs.com/2024-06-02//c89be42e-d71f-47d5-8316-d771e6f3bf84_a0b8774404ae8a2c.jpg"],"bounds":{"buyBounds":0,"growBounds":0},"baseAttrs":[{"attrId":12,"attrValues":"A2217","showDesc":1},{"attrId":13,"attrValues":"2019","showDesc":1},{"attrId":14,"attrValues":"黑色","showDesc":1},{"attrId":15,"attrValues":"14寸","showDesc":1},{"attrId":16,"attrValues":"其他","showDesc":1},{"attrId":17,"attrValues":"高通","showDesc":1},{"attrId":18,"attrValues":"骁龙665","showDesc":1}],"skus":[{"attr":[{"attrId":19,"attrName":"颜色","attrValue":"黑色"},{"attrId":20,"attrName":"内存","attrValue":"4GB"}],"skuName":"神机诺基亚 黑色 4GB","price":"2000","skuTitle":"神机诺基亚 黑色 4GB","skuSubtitle":"我了个去","images":[{"imgUrl":"","defaultImg":0},{"imgUrl":"https://liyumall-yyds.oss-cn-beijing.aliyuncs.com/2024-06-02//c89be42e-d71f-47d5-8316-d771e6f3bf84_a0b8774404ae8a2c.jpg","defaultImg":1}],"descar":["黑色","4GB"],"fullCount":0,"discount":0,"countStatus":0,"fullPrice":0,"reducePrice":0,"priceStatus":0,"memberPrice":[{"id":2,"name":"铜牌会员","price":500},{"id":3,"name":"银牌会员","price":200}]},{"attr":[{"attrId":19,"attrName":"颜色","attrValue":"白色"},{"attrId":20,"attrName":"内存","attrValue":"4GB"}],"skuName":"神机诺基亚 白色 4GB","price":"4000","skuTitle":"神机诺基亚 白色 4GB","skuSubtitle":"我了个去","images":[{"imgUrl":"https://liyumall-yyds.oss-cn-beijing.aliyuncs.com/2024-06-02//61304744-5959-4a3d-8a45-1aee6b452f64_919c850652e98031.jpg","defaultImg":1},{"imgUrl":"","defaultImg":0}],"descar":["白色","4GB"],"fullCount":0,"discount":0,"countStatus":0,"fullPrice":0,"reducePrice":0,"priceStatus":0,"memberPrice":[{"id":2,"name":"铜牌会员","price":300},{"id":3,"name":"银牌会员","price":200}]}]}