|
|
|
@ -1,5 +1,25 @@
|
|
|
|
|
package com.muyu.product.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import com.muyu.common.core.utils.ObjUtils;
|
|
|
|
|
import com.muyu.product.domain.*;
|
|
|
|
|
import com.muyu.product.domain.base.CategoryBase;
|
|
|
|
|
import com.muyu.product.domain.model.CategoryInfoSaveModel;
|
|
|
|
|
import com.muyu.product.domain.model.TemplateAttributeGroupModel;
|
|
|
|
|
import com.muyu.product.domain.model.TemplateAttributeModel;
|
|
|
|
|
import com.muyu.product.domain.req.CategoryInfoEditReq;
|
|
|
|
|
import com.muyu.product.domain.resp.CategoryCommonElementResp;
|
|
|
|
|
import com.muyu.product.domain.resp.CategoryParentCommonElementResp;
|
|
|
|
|
import com.muyu.product.mapper.CategoryInfoMapper;
|
|
|
|
|
import com.muyu.product.service.*;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.HashSet;
|
|
|
|
|
import java.util.List;
|
|
|
|
@ -7,25 +27,6 @@ import java.util.Set;
|
|
|
|
|
import java.util.function.Function;
|
|
|
|
|
import java.util.stream.Stream;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
|
import com.muyu.common.core.utils.ObjUtils;
|
|
|
|
|
import com.muyu.product.domain.*;
|
|
|
|
|
import com.muyu.product.domain.base.CategoryBase;
|
|
|
|
|
import com.muyu.product.domain.model.CategoryInfoSaveModel;
|
|
|
|
|
import com.muyu.product.domain.req.CategoryInfoEditReq;
|
|
|
|
|
import com.muyu.product.domain.resp.CategoryCommontElementResp;
|
|
|
|
|
import com.muyu.product.domain.resp.CategoryParentCommonElementResp;
|
|
|
|
|
import com.muyu.product.domain.resp.TempateAttributeModel;
|
|
|
|
|
import com.muyu.product.domain.model.TemplateAttributeGroupModel;
|
|
|
|
|
import com.muyu.product.service.*;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import com.muyu.product.mapper.CategoryInfoMapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 品类信息Service业务层处理
|
|
|
|
|
*
|
|
|
|
@ -35,6 +36,8 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
|
@Slf4j
|
|
|
|
|
@Service
|
|
|
|
|
public class CategoryInfoServiceImpl extends ServiceImpl<CategoryInfoMapper, CategoryInfo> implements CategoryInfoService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private AsCategoryAttributeService asCategoryAttributeService;
|
|
|
|
|
|
|
|
|
@ -48,19 +51,23 @@ public class CategoryInfoServiceImpl extends ServiceImpl<CategoryInfoMapper, Cat
|
|
|
|
|
private AsAttributeGroupService asAttributeGroupService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private AttributeInfoServiceImpl attributeInfoService;
|
|
|
|
|
@Autowired
|
|
|
|
|
private AttributeGroupService attributeGroupService;
|
|
|
|
|
private AttributeInfoService attributeInfoService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private BrandInfoService brandInfoService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private AttributeGroupService attributeGroupService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询品类信息列表
|
|
|
|
|
*
|
|
|
|
|
* @param categoryInfo 品类信息
|
|
|
|
|
*
|
|
|
|
|
* @return 品类信息
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<CategoryInfo> list(CategoryInfo categoryInfo) {
|
|
|
|
|
public List<CategoryInfo> list (CategoryInfo categoryInfo) {
|
|
|
|
|
LambdaQueryWrapper<CategoryInfo> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -84,109 +91,69 @@ public class CategoryInfoServiceImpl extends ServiceImpl<CategoryInfoMapper, Cat
|
|
|
|
|
queryWrapper.eq(CategoryInfo::getIntroduction, categoryInfo.getIntroduction());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return list(queryWrapper);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public CategoryParentCommonElementResp parentCommonElement(Long categoryId) {
|
|
|
|
|
return CategoryParentCommonElementResp.builder()
|
|
|
|
|
.attributeInfoList(getCommon(categoryId,asCategoryAttributeService,attributeInfoService))
|
|
|
|
|
.attributeGroupList(getCommon(categoryId,asCategoryAttributeGroupService,attributeGroupService))
|
|
|
|
|
.brandInfoList(getCommon(categoryId,asCategoryBrandService,brandInfoService))
|
|
|
|
|
.build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void getParentIdListByCateGoryId(List<Long> parentIdList,Long cateGoryId){
|
|
|
|
|
if (cateGoryId.equals(0L)){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo categoryInfo = this.getById(cateGoryId);
|
|
|
|
|
parentIdList.add(categoryInfo.getParentId());
|
|
|
|
|
getParentIdListByCateGoryId(parentIdList,categoryInfo.getParentId());
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public void util(CategoryInfoEditReq categoryInfoEditReq, Long groupId) {
|
|
|
|
|
// List<Long> cateGoryIdList = categoryInfoEditReq.getCateGoryIdList();
|
|
|
|
|
// // 删除现有的 AsCategoryAttribute 对象
|
|
|
|
|
// List<AsCategoryAttribute> existingAttributes = asCategoryAttributeService.list();
|
|
|
|
|
// List<Long> existingCategoryIds = existingAttributes.stream()
|
|
|
|
|
// .map(AsCategoryAttribute::getCategoryId)
|
|
|
|
|
// .collect(Collectors.toList());
|
|
|
|
|
// asCategoryAttributeService.removeBatchByIds(existingCategoryIds);
|
|
|
|
|
//
|
|
|
|
|
// // 保存新的 AsCategoryAttribute 对象
|
|
|
|
|
// List<AsCategoryAttribute> newAttributes = cateGoryIdList.stream()
|
|
|
|
|
// .map(categoryId -> new AsCategoryAttribute())
|
|
|
|
|
// .collect(Collectors.toList());
|
|
|
|
|
// asCategoryAttributeService.saveBatch(newAttributes);
|
|
|
|
|
AsCategoryAttribute categoryAttribute = AsCategoryAttribute.categoryAttribute(groupId);
|
|
|
|
|
List<AsCategoryAttribute> list = asCategoryAttributeService.list(categoryAttribute);
|
|
|
|
|
ArrayList<Long> longArrayList = new ArrayList<>();
|
|
|
|
|
for (AsCategoryAttribute asCategoryAttribute : list) {
|
|
|
|
|
longArrayList.add(asCategoryAttribute.getId());
|
|
|
|
|
}
|
|
|
|
|
asCategoryAttributeService.removeBatchByIds(longArrayList);
|
|
|
|
|
List<Long> goryIdList = categoryInfoEditReq.getCateGoryIdList();
|
|
|
|
|
asCategoryAttributeService.saveBatch(
|
|
|
|
|
goryIdList.stream()
|
|
|
|
|
.map(categoryId->AsCategoryAttribute.categoryBuild(groupId,categoryId))
|
|
|
|
|
.toList()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean save(CategoryInfoSaveModel categoryInfoSaveModel) {
|
|
|
|
|
@Transactional
|
|
|
|
|
public boolean save (CategoryInfoSaveModel categoryInfoSaveModel) {
|
|
|
|
|
CategoryInfo categoryInfo = CategoryInfo.saveModelBuild(categoryInfoSaveModel);
|
|
|
|
|
boolean save = this.save(categoryInfo);
|
|
|
|
|
Long categoryInfoId = categoryInfo.getId();
|
|
|
|
|
List<Long> attributeIdList = categoryInfoSaveModel.getAttributeIdList();
|
|
|
|
|
if (attributeIdList!=null && !attributeIdList.isEmpty()){
|
|
|
|
|
if (attributeIdList != null && !attributeIdList.isEmpty()) {
|
|
|
|
|
asCategoryAttributeService.saveBatch(
|
|
|
|
|
attributeIdList.stream()
|
|
|
|
|
.map(attributeId->AsCategoryAttribute.categoryBuild(categoryInfoId,attributeId))
|
|
|
|
|
.map(attributeId -> AsCategoryAttribute.categoryBuild(categoryInfoId, attributeId))
|
|
|
|
|
.toList()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
List<Long> attributeGroupIdList = categoryInfoSaveModel.getAttributeGroupIdList();
|
|
|
|
|
if (attributeGroupIdList!=null && !attributeGroupIdList.isEmpty()){
|
|
|
|
|
if (attributeGroupIdList != null && !attributeGroupIdList.isEmpty()) {
|
|
|
|
|
asCategoryAttributeGroupService.saveBatch(
|
|
|
|
|
attributeGroupIdList.stream()
|
|
|
|
|
.map(attributeGroupId -> AsCategoryAttributeGroup.categoryBuild(categoryInfoId,attributeGroupId))
|
|
|
|
|
.map(attributeGroupId -> AsCategoryAttributeGroup.categoryBuild(categoryInfoId, attributeGroupId))
|
|
|
|
|
.toList()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
List<Long> brandIdList = categoryInfoSaveModel.getBrandIdList();
|
|
|
|
|
if (brandIdList!=null && !brandIdList.isEmpty()){
|
|
|
|
|
if (brandIdList != null && !brandIdList.isEmpty()) {
|
|
|
|
|
asCategoryBrandService.saveBatch(
|
|
|
|
|
brandIdList.stream()
|
|
|
|
|
.map(brandId->AsCategoryBrand.categoryBuild(categoryInfoId,brandId))
|
|
|
|
|
.map(brandId -> AsCategoryBrand.categoryBuild(categoryInfoId, brandId))
|
|
|
|
|
.toList()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
return save;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过品类ID获取父级以上的属性组集合
|
|
|
|
|
*
|
|
|
|
|
* @param categoryId 品类ID
|
|
|
|
|
*
|
|
|
|
|
* @return 父级以上的属性组集合
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<AttributeGroup> getAttributeGroup(Long categoryId) {
|
|
|
|
|
ArrayList<AttributeGroup> attributeGroupList = new ArrayList<>();
|
|
|
|
|
public List<AttributeGroup> getAttributeGroup (Long categoryId) {
|
|
|
|
|
List<AttributeGroup> attributeGroupList = new ArrayList<>();
|
|
|
|
|
LambdaQueryWrapper<AsCategoryAttributeGroup> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
queryWrapper.eq(AsCategoryAttributeGroup::getCategoryId,categoryId);
|
|
|
|
|
queryWrapper.eq(AsCategoryAttributeGroup::getCategoryId, categoryId);
|
|
|
|
|
List<AsCategoryAttributeGroup> asCategoryAttributeGroupList = asCategoryAttributeGroupService.list(queryWrapper);
|
|
|
|
|
if (asCategoryAttributeGroupList!=null && !asCategoryAttributeGroupList.isEmpty()){
|
|
|
|
|
asCategoryAttributeGroupList.stream()
|
|
|
|
|
if (asCategoryAttributeGroupList != null && !asCategoryAttributeGroupList.isEmpty()) {
|
|
|
|
|
List<Long> attributeGroupIdList = asCategoryAttributeGroupList.stream()
|
|
|
|
|
.map(AsCategoryAttributeGroup::getAttributeGroupId)
|
|
|
|
|
.toList();
|
|
|
|
|
attributeGroupList.addAll(attributeGroupService.listByIds(attributeGroupList));
|
|
|
|
|
attributeGroupList.addAll(attributeGroupService.listByIds(attributeGroupIdList));
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo categoryInfo = this.getById(categoryId);
|
|
|
|
|
if (categoryInfo.getParentId()!=0){
|
|
|
|
|
if (attributeGroupList.isEmpty()){
|
|
|
|
|
if (categoryInfo.getParentId() != 0) {
|
|
|
|
|
if (attributeGroupList.isEmpty()) {
|
|
|
|
|
attributeGroupList.addAll(getAttributeGroup(categoryInfo.getParentId()));
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
List<AttributeGroup> attributeGroups = getAttributeGroup(categoryInfo.getParentId());
|
|
|
|
|
attributeGroups.forEach(attributeGroup -> {
|
|
|
|
|
if (!attributeGroupList.contains(attributeGroup)){
|
|
|
|
|
if (!attributeGroupList.contains(attributeGroup)) {
|
|
|
|
|
attributeGroupList.add(attributeGroup);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -195,59 +162,70 @@ public class CategoryInfoServiceImpl extends ServiceImpl<CategoryInfoMapper, Cat
|
|
|
|
|
return attributeGroupList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过品类ID获取父级以上的品牌集合
|
|
|
|
|
*
|
|
|
|
|
* @param categoryId 品类ID
|
|
|
|
|
*
|
|
|
|
|
* @return 父级以上的品牌集合
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<BrandInfo> getBrand(Long categoryId) {
|
|
|
|
|
ArrayList<BrandInfo> brandInfoList = new ArrayList<>();
|
|
|
|
|
public List<BrandInfo> getBrand (Long categoryId) {
|
|
|
|
|
List<BrandInfo> brandInfoList = new ArrayList<>();
|
|
|
|
|
LambdaQueryWrapper<AsCategoryBrand> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
queryWrapper.eq(AsCategoryBrand::getCategoryId,categoryId);
|
|
|
|
|
queryWrapper.eq(AsCategoryBrand::getCategoryId, categoryId);
|
|
|
|
|
List<AsCategoryBrand> asCategoryBrandList = asCategoryBrandService.list(queryWrapper);
|
|
|
|
|
if (asCategoryBrandList!=null &&!asCategoryBrandList.isEmpty()){
|
|
|
|
|
if (asCategoryBrandList != null && !asCategoryBrandList.isEmpty()) {
|
|
|
|
|
List<Long> brandIdList = asCategoryBrandList.stream()
|
|
|
|
|
.map(AsCategoryBrand::getBrandId)
|
|
|
|
|
.toList();
|
|
|
|
|
brandInfoList.addAll(brandInfoService.listByIds(brandIdList));
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo categoryInfo = this.getById(categoryId);
|
|
|
|
|
if (categoryInfo.getParentId()!=0){
|
|
|
|
|
if (brandInfoList.isEmpty()){
|
|
|
|
|
if (categoryInfo.getParentId() != 0) {
|
|
|
|
|
if (brandInfoList.isEmpty()) {
|
|
|
|
|
brandInfoList.addAll(getBrand(categoryInfo.getParentId()));
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
List<BrandInfo> brandInfos = getBrand(categoryInfo.getParentId());
|
|
|
|
|
brandInfos.forEach(brandInfo -> {
|
|
|
|
|
if (!brandInfoList.contains(brandInfo)){
|
|
|
|
|
if (!brandInfoList.contains(brandInfo)) {
|
|
|
|
|
brandInfoList.add(brandInfo);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
return brandInfoList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过品类ID获取父级以上的属性集合
|
|
|
|
|
*
|
|
|
|
|
* @param categoryId 品类ID
|
|
|
|
|
*
|
|
|
|
|
* @return 父级以上的属性集合
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<AttributeInfo> getAttribute(Long categoryId) {
|
|
|
|
|
ArrayList<AttributeInfo> attributeInfoList = new ArrayList<>();
|
|
|
|
|
public List<AttributeInfo> getAttribute (Long categoryId) {
|
|
|
|
|
List<AttributeInfo> attributeInfoList = new ArrayList<>();
|
|
|
|
|
LambdaQueryWrapper<AsCategoryAttribute> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
queryWrapper.eq(AsCategoryAttribute::getCategoryId,categoryId);
|
|
|
|
|
queryWrapper.eq(AsCategoryAttribute::getCategoryId, categoryId);
|
|
|
|
|
List<AsCategoryAttribute> asCategoryAttributeList = asCategoryAttributeService.list(queryWrapper);
|
|
|
|
|
if (asCategoryAttributeList!=null && !asCategoryAttributeList.isEmpty()){
|
|
|
|
|
if (asCategoryAttributeList != null && !asCategoryAttributeList.isEmpty()) {
|
|
|
|
|
List<Long> attributeIdList = asCategoryAttributeList.stream()
|
|
|
|
|
.map(AsCategoryAttribute::getCategoryId)
|
|
|
|
|
.map(AsCategoryAttribute::getAttributeId)
|
|
|
|
|
.toList();
|
|
|
|
|
attributeInfoList.addAll(attributeInfoService.listByIds(attributeIdList));
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo categoryInfo = this.getById(categoryId);
|
|
|
|
|
if (categoryInfo.getParentId()!=0){
|
|
|
|
|
if (attributeInfoList.isEmpty()){
|
|
|
|
|
if (categoryInfo.getParentId() != 0) {
|
|
|
|
|
if (attributeInfoList.isEmpty()) {
|
|
|
|
|
attributeInfoList.addAll(getAttribute(categoryInfo.getParentId()));
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
List<AttributeInfo> attributeInfos = getAttribute(categoryInfo.getParentId());
|
|
|
|
|
attributeInfos.forEach(attributeInfosQurey -> {
|
|
|
|
|
if (!attributeInfoList.contains(attributeInfosQurey)){
|
|
|
|
|
if (!attributeInfoList.contains(attributeInfosQurey)){
|
|
|
|
|
attributeInfoList.add(attributeInfosQurey);
|
|
|
|
|
}
|
|
|
|
|
attributeInfos.forEach(attributeInfoQuery -> {
|
|
|
|
|
if (!attributeInfoList.contains(attributeInfoQuery)) {
|
|
|
|
|
attributeInfoList.add(attributeInfoQuery);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -257,15 +235,81 @@ public class CategoryInfoServiceImpl extends ServiceImpl<CategoryInfoMapper, Cat
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public CategoryParentCommonElementResp paretCoommonElement(Long categoryId) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public <T, AS> List<T> getCommon (Long categoryId, IService<AS> iService, IService<T> bsiService) {
|
|
|
|
|
List<T> list = new ArrayList();
|
|
|
|
|
QueryWrapper<AS> asQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
asQueryWrapper.eq("category_id", categoryId);
|
|
|
|
|
List<AS> asList = iService.list(asQueryWrapper);
|
|
|
|
|
if (asList != null && !asList.isEmpty()) {
|
|
|
|
|
List<Long> baseIdList = asList.stream()
|
|
|
|
|
.map(as -> {
|
|
|
|
|
if (as instanceof CategoryBase categoryBase) {
|
|
|
|
|
return categoryBase.getBaseId();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
})
|
|
|
|
|
.toList();
|
|
|
|
|
list.addAll(bsiService.listByIds(baseIdList));
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo categoryInfo = this.getById(categoryId);
|
|
|
|
|
if (categoryInfo.getParentId() != 0) {
|
|
|
|
|
if (list.isEmpty()) {
|
|
|
|
|
list.addAll(getCommon(categoryInfo.getParentId(), iService, bsiService));
|
|
|
|
|
} else {
|
|
|
|
|
List<T> commonList = getCommon(categoryInfo.getParentId(), iService, bsiService);
|
|
|
|
|
commonList.forEach(common -> {
|
|
|
|
|
if (!list.contains(common)) {
|
|
|
|
|
list.add(common);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过品类ID获取父级以上的属性、属性组、品牌集合
|
|
|
|
|
*
|
|
|
|
|
* @param categoryId 品类ID
|
|
|
|
|
*
|
|
|
|
|
* @return 父级以上的属性、属性组、品牌集合
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public CategoryParentCommonElementResp parentCommonElement (Long categoryId) {
|
|
|
|
|
return CategoryParentCommonElementResp.builder()
|
|
|
|
|
.attributeInfoList(getCommon(categoryId,asCategoryAttributeService,attributeInfoService))
|
|
|
|
|
.attributeGroupList(getCommon(categoryId,asCategoryAttributeGroupService,attributeGroupService))
|
|
|
|
|
.brandInfoList(getCommon(categoryId,asCategoryBrandService,brandInfoService))
|
|
|
|
|
.attributeInfoList(getCommon(categoryId, asCategoryAttributeService, attributeInfoService))
|
|
|
|
|
.attributeGroupList(getCommon(categoryId, asCategoryAttributeGroupService, attributeGroupService))
|
|
|
|
|
.brandInfoList(getCommon(categoryId, asCategoryBrandService, brandInfoService))
|
|
|
|
|
.build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public CategoryCommontElementResp getTemplateAttributeByCateGoryId(Long cateGoryId) {
|
|
|
|
|
public void util(CategoryInfoEditReq categoryInfoEditReq, Long id) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void getParentIdListByCateGoryId(List<Long> parentIdList, Long cateGoryId){
|
|
|
|
|
if (cateGoryId.equals(0L)){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo categoryInfo = this.getById(cateGoryId);
|
|
|
|
|
parentIdList.add(categoryInfo.getId());
|
|
|
|
|
getParentIdListByCateGoryId(parentIdList, categoryInfo.getParentId());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过品类ID获取品类共有属性
|
|
|
|
|
*
|
|
|
|
|
* @param cateGoryId 品类ID
|
|
|
|
|
*
|
|
|
|
|
* @return 品类共有属性
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public CategoryCommonElementResp getTemplateAttributeByCateGoryId (Long cateGoryId) {
|
|
|
|
|
List<Long> cateGoryIdList = new ArrayList<>();
|
|
|
|
|
getParentIdListByCateGoryId(cateGoryIdList, cateGoryId);
|
|
|
|
|
// 取出和品类相关联的属性组关系 - 中间表
|
|
|
|
@ -299,147 +343,42 @@ public class CategoryInfoServiceImpl extends ServiceImpl<CategoryInfoMapper, Cat
|
|
|
|
|
if (!attributeGroupModelList.isEmpty()){
|
|
|
|
|
attributeIdSet.addAll(
|
|
|
|
|
attributeGroupModelList.stream()
|
|
|
|
|
.flatMap((Function<TemplateAttributeGroupModel, Stream<TempateAttributeModel>>) templateAttributeGroupModel -> templateAttributeGroupModel.getAttributeList().stream())
|
|
|
|
|
.map(TempateAttributeModel::getId)
|
|
|
|
|
.flatMap((Function<TemplateAttributeGroupModel, Stream<TemplateAttributeModel>>) templateAttributeGroupModel -> templateAttributeGroupModel.getAttributeList().stream())
|
|
|
|
|
.map(TemplateAttributeModel::getId)
|
|
|
|
|
.toList()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<TempateAttributeModel> tempateAttributeModelList=new ArrayList<>();
|
|
|
|
|
List<TemplateAttributeModel> templateAttributeModelList = new ArrayList<>();
|
|
|
|
|
LambdaQueryWrapper<AsCategoryAttribute> categoryAttributeQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
categoryAttributeQueryWrapper.in(AsCategoryAttribute::getAttributeId,cateGoryIdList);
|
|
|
|
|
categoryAttributeQueryWrapper.in(AsCategoryAttribute::getCategoryId, cateGoryIdList);
|
|
|
|
|
List<AsCategoryAttribute> asCategoryAttributeList = asCategoryAttributeService.list(categoryAttributeQueryWrapper);
|
|
|
|
|
if (asCategoryAttributeList!=null && asCategoryAttributeList.isEmpty()){
|
|
|
|
|
if (asCategoryAttributeList != null && !asCategoryAttributeList.isEmpty()){
|
|
|
|
|
List<Long> templateAttributeIdList = asCategoryAttributeList.stream()
|
|
|
|
|
.map(AsCategoryAttribute::getAttributeId)
|
|
|
|
|
.filter(templateAttributeId -> !attributeIdSet.contains(templateAttributeId))
|
|
|
|
|
.toList();
|
|
|
|
|
tempateAttributeModelList =attributeInfoService.listByIds(
|
|
|
|
|
templateAttributeIdList
|
|
|
|
|
).stream().map(AttributeInfo::buildTemplateModel)
|
|
|
|
|
templateAttributeModelList = attributeInfoService.listByIds(templateAttributeIdList).stream()
|
|
|
|
|
.map(AttributeInfo::buildTemplateModel)
|
|
|
|
|
.toList();
|
|
|
|
|
}
|
|
|
|
|
List<TempateAttributeModel> attributeModelList=new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
if (!tempateAttributeModelList.isEmpty()){
|
|
|
|
|
List<TemplateAttributeModel> attributeModelList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
if (!templateAttributeModelList.isEmpty()){
|
|
|
|
|
attributeIdSet.addAll(
|
|
|
|
|
tempateAttributeModelList.stream().map(TempateAttributeModel::getId).toList()
|
|
|
|
|
templateAttributeModelList.stream().map(TemplateAttributeModel::getId).toList()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LambdaQueryWrapper<AttributeInfo> attributeInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
attributeInfoLambdaQueryWrapper.notIn(!attributeIdSet.isEmpty(),AttributeInfo::getId,attributeIdSet);
|
|
|
|
|
attributeInfoService.list(attributeInfoLambdaQueryWrapper).stream().map(AttributeInfo::buildTemplateModel).toList();
|
|
|
|
|
attributeInfoLambdaQueryWrapper.notIn(!attributeIdSet.isEmpty(), AttributeInfo::getId, attributeIdSet);
|
|
|
|
|
attributeModelList = attributeInfoService.list(attributeInfoLambdaQueryWrapper).stream().map(AttributeInfo::buildTemplateModel).toList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return CategoryCommontElementResp.builder()
|
|
|
|
|
.templateAttributeGroupList(null)
|
|
|
|
|
.templateAttributeList(null)
|
|
|
|
|
.attributeList(null)
|
|
|
|
|
return CategoryCommonElementResp.builder()
|
|
|
|
|
.templateAttributeGroupList(attributeGroupModelList)
|
|
|
|
|
.templateAttributeList(templateAttributeModelList)
|
|
|
|
|
.attributeList(attributeModelList)
|
|
|
|
|
.build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public boolean save(CategoryInfoSaveModel categoryInfoSaveModel) {
|
|
|
|
|
// CategoryInfo categoryInfo = CategoryInfo.saveModelBuild(categoryInfoSaveModel);
|
|
|
|
|
// boolean save = this.save(categoryInfo);
|
|
|
|
|
// Long categoryInfoId = categoryInfo.getId();
|
|
|
|
|
// List<Long> attributeIdList = categoryInfoSaveModel.getAttributeIdList();
|
|
|
|
|
// if (attributeIdList != null && !attributeIdList.isEmpty()){
|
|
|
|
|
// asCategoryAttributeService.saveBatch(
|
|
|
|
|
// attributeIdList.stream()
|
|
|
|
|
// .map(attributeId -> AsCategoryAttribute.categoryBuild(categoryInfoId, attributeId))
|
|
|
|
|
// .toList()
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
// List<Long> attributeGroupIdList = categoryInfoSaveModel.getAttributeGroupIdList();
|
|
|
|
|
// if (attributeGroupIdList != null && !attributeGroupIdList.isEmpty()){
|
|
|
|
|
// asCategoryAttributeGroupService.saveBatch(
|
|
|
|
|
// attributeGroupIdList.stream()
|
|
|
|
|
// .map(attributeGroupId -> AsCategoryAttributeGroup.categoryBuild(categoryInfoId, attributeGroupId))
|
|
|
|
|
// .toList()
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
// List<Long> brandIdList = categoryInfoSaveModel.getBrandIdList();
|
|
|
|
|
// if (brandIdList != null && !brandIdList.isEmpty()){
|
|
|
|
|
// asCategoryBrandService.saveBatch(
|
|
|
|
|
// brandIdList.stream()
|
|
|
|
|
// .map(brandId -> AsCategoryBrand.categoryBuild(categoryInfoId, brandId))
|
|
|
|
|
// .toList()
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
// return save;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// public <T, AS> List<T> getCommon(Long categoryId, IService<AS> iService,
|
|
|
|
|
// IService<T> bsiservice) {
|
|
|
|
|
// List<T> list = new ArrayList<>();
|
|
|
|
|
// QueryWrapper<AS> asQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
// asQueryWrapper.eq("attribute_id", categoryId);
|
|
|
|
|
// List<AS> asList = iService.list(asQueryWrapper);
|
|
|
|
|
// if (asList != null && !asList.isEmpty()) {
|
|
|
|
|
// List<Long> baseIdList = asList.stream().
|
|
|
|
|
// map(as -> {
|
|
|
|
|
// if (as instanceof CategoryBase categoryBase) {
|
|
|
|
|
// return categoryBase.getBaseId();
|
|
|
|
|
// }
|
|
|
|
|
// return null;
|
|
|
|
|
// })
|
|
|
|
|
// .toList();
|
|
|
|
|
// list.addAll(bsiservice.listByIds(baseIdList));
|
|
|
|
|
// }
|
|
|
|
|
// CategoryInfo categoryInfo = this.getById(categoryId);
|
|
|
|
|
// if (categoryInfo.getParentId() != 0) {
|
|
|
|
|
// if (list.isEmpty()) {
|
|
|
|
|
// list.addAll(getCommon(categoryInfo.getParentId(), iService, bsiservice));
|
|
|
|
|
// } else {
|
|
|
|
|
// List<T> commonList = getCommon(categoryInfo.getParentId(), iService, bsiservice);
|
|
|
|
|
// commonList.forEach(common -> {
|
|
|
|
|
// if (!list.contains(common)) {
|
|
|
|
|
// list.add(common);
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// return list;
|
|
|
|
|
// }
|
|
|
|
|
//T和AS是泛型类参数
|
|
|
|
|
public <T,AS> List<T> getCommon(Long categoryId,IService<AS> iService,
|
|
|
|
|
IService<T> bsiervice){
|
|
|
|
|
//初始化并创建一个空列表
|
|
|
|
|
ArrayList<T> list = new ArrayList<>();
|
|
|
|
|
//创建查询条件
|
|
|
|
|
QueryWrapper<AS> asQueryWrapper = new QueryWrapper<>();
|
|
|
|
|
asQueryWrapper.eq("attribute_id",categoryId);
|
|
|
|
|
List<AS> asList = iService.list(asQueryWrapper);
|
|
|
|
|
if (asList!=null && !asList.isEmpty()){
|
|
|
|
|
List<Long> baseIdList=asList.stream().
|
|
|
|
|
map(as -> {
|
|
|
|
|
if (as instanceof CategoryBase categoryBase){
|
|
|
|
|
return categoryBase.getBaseId();
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
})
|
|
|
|
|
.toList();
|
|
|
|
|
list.addAll(bsiervice.listByIds(baseIdList));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
CategoryInfo byId = this.getById(categoryId);
|
|
|
|
|
if (byId.getParentId()!=0){
|
|
|
|
|
if (list.isEmpty()){
|
|
|
|
|
list.addAll(getCommon(byId.getParentId(),iService,bsiervice));
|
|
|
|
|
}else {
|
|
|
|
|
List<T> commonList = getCommon(byId.getParentId(), iService, bsiervice);
|
|
|
|
|
commonList.forEach(common ->{
|
|
|
|
|
if (!list.contains(common)){
|
|
|
|
|
list.add(common);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|