goods列表补全商品规格列表
This commit is contained in:
parent
a9d8d7e1f1
commit
87d81b0547
|
|
@ -56,6 +56,10 @@ public class GoodsController extends BaseController {
|
|||
// 补全商品
|
||||
List<GoodsArea> goodsAreas = goodsAreaService.selectByGoodsId(one.getGoodsId());
|
||||
one.setGoodsAreaList(goodsAreas);
|
||||
|
||||
// 补全商品类别
|
||||
List<GoodsStandard> goodsStandards = goodsStandardService.selectByGoodsId(one.getGoodsId());
|
||||
one.setGoodsStandardList(goodsStandards);
|
||||
});
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue