|
@@ -70,15 +70,13 @@ public class WebsitSalesRetLogic {
|
|
|
List<String> companyWechatIds = adminUser.getCompanyWechatIds();
|
|
|
|
|
|
//1.组装查询条件
|
|
|
- ZfireParamBean zfireParam = FieldUtils.supplyParam(zfireParamBean, WebsitSalesRetVO.class);
|
|
|
+ ZfireParamBean zfireParam = FieldUtils.supplyParam(zfireParamBean, WebsitSalesRetVO.class,adminUser);
|
|
|
|
|
|
- // 网点权限
|
|
|
- String websitId = adminUser.getType() == 0 ? adminUser.getAdminWebsitIds().get(0) : null;
|
|
|
|
|
|
IPage<WebsitSalesRetVO> websitSalesRetVOIPage = websitSalesRetCMapper.pageV2(new Page(zfireParamBean.getPageNum(),
|
|
|
zfireParamBean.getPageSize()),
|
|
|
zfireParam
|
|
|
- , companyWechatIds,websitId);
|
|
|
+ , companyWechatIds);
|
|
|
|
|
|
return websitSalesRetVOIPage;
|
|
|
}
|