Merge branch 'master' of https://gitee.com/beijing_hongye_huicheng/lilishop
This commit is contained in:
commit
d8155b2c15
@ -20,8 +20,7 @@ public interface CategorySpecificationMapper extends BaseMapper<CategorySpecific
|
||||
* @param categoryId 分类id
|
||||
* @return 分类绑定规格列表
|
||||
*/
|
||||
@Select("select s.* from " +
|
||||
"li_specification s INNER join li_category_specification cs on s.id = cs.specification_id and cs.category_id = #{categoryId} " +
|
||||
"where s.delete_flag = 0")
|
||||
@Select("select s.* from li_specification s INNER join li_category_specification cs " +
|
||||
"on s.id = cs.specification_id and cs.category_id = #{categoryId} ")
|
||||
List<Specification> getCategorySpecList(String categoryId);
|
||||
}
|
@ -36,7 +36,7 @@ public class DistributionOrderStoreController {
|
||||
public ResultMessage<IPage<DistributionOrder>> distributionOrder(DistributionOrderSearchParams distributionOrderSearchParams) {
|
||||
|
||||
//获取当前登录商家账号-查询当前店铺的分销订单
|
||||
distributionOrderSearchParams.setStoreId(UserContext.getCurrentUser().getId());
|
||||
distributionOrderSearchParams.setStoreId(UserContext.getCurrentUser().getStoreId());
|
||||
//查询分销订单列表
|
||||
IPage<DistributionOrder> distributionOrderPage = distributionOrderService.getDistributionOrderPage(distributionOrderSearchParams);
|
||||
return ResultUtil.data(distributionOrderPage);
|
||||
|
Loading…
x
Reference in New Issue
Block a user