Skip to content

Commit

Permalink
【功能优化】添加商品属性时允许选择已有的属性值
Browse files Browse the repository at this point in the history
  • Loading branch information
YunaiV committed Aug 14, 2024
1 parent a2a6e9a commit 720b426
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;

import java.util.List;

import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertList;

@Tag(name = "管理后台 - 商品属性项")
@RestController
Expand Down Expand Up @@ -69,4 +72,12 @@ public CommonResult<PageResult<ProductPropertyRespVO>> getPropertyPage(@Valid Pr
return success(BeanUtils.toBean(pageResult, ProductPropertyRespVO.class));
}

@GetMapping("/simple-list")
@Operation(summary = "获得属性项精简列表")
public CommonResult<List<ProductPropertyRespVO>> getPropertySimpleList() {
List<ProductPropertyDO> list = productPropertyService.getPropertyList();
return success(convertList(list, property -> new ProductPropertyRespVO() // 只返回 id、name 属性
.setId(property.getId()).setName(property.getName())));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;

import java.util.List;

import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertList;
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.singleton;

@Tag(name = "管理后台 - 商品属性值")
@RestController
Expand Down Expand Up @@ -69,4 +73,13 @@ public CommonResult<PageResult<ProductPropertyValueRespVO>> getPropertyValuePage
return success(BeanUtils.toBean(pageResult, ProductPropertyValueRespVO.class));
}

@GetMapping("/simple-list")
@Operation(summary = "获得属性值精简列表")
@Parameter(name = "propertyId", description = "属性项编号", required = true, example = "1024")
public CommonResult<List<ProductPropertyValueRespVO>> getPropertyValueSimpleList(@RequestParam("propertyId") Long propertyId) {
List<ProductPropertyValueDO> list = productPropertyValueService.getPropertyValueListByPropertyId(singleton(propertyId));
return success(convertList(list, value -> new ProductPropertyValueRespVO() // 只返回 id、name 属性
.setId(value.getId()).setName(value.getName())));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ public class ProductPropertyDO extends BaseDO {
* 名称
*/
private String name;
/**
* 状态
*/
private Integer status;
/**
* 备注
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,11 @@ public interface ProductPropertyService {
*/
List<ProductPropertyDO> getPropertyList(Collection<Long> ids);

/**
* 获得指定状态的属性项列表
*
* @return 属性项列表
*/
List<ProductPropertyDO> getPropertyList();

}
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,9 @@ public List<ProductPropertyDO> getPropertyList(Collection<Long> ids) {
return productPropertyMapper.selectBatchIds(ids);
}

@Override
public List<ProductPropertyDO> getPropertyList() {
return productPropertyMapper.selectList();
}

}

0 comments on commit 720b426

Please sign in to comment.