|
|
@@ -163,7 +163,14 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements
|
|
|
public Pagination<CustomerListOut> listAllOrganizationCustomer(CustomerListIn cli, Integer pageNo,Integer pageSize) {
|
|
|
cli.setType(AFTConstants.USER_TYPE_ORGANIZATION);
|
|
|
Map<String,Object> params = disposeParams(cli);
|
|
|
- return (Pagination<CustomerListOut>) findPage("selectOrganizationCustomerList","selectOrganizationCustomerCount",params,pageNo,pageSize);
|
|
|
+ Pagination<CustomerListOut> p=(Pagination<CustomerListOut>) findPage("selectOrganizationCustomerList","selectOrganizationCustomerCount",params,pageNo,pageSize);
|
|
|
+ List<CustomerListOut> l=(List<CustomerListOut>) p.getList();
|
|
|
+ for (CustomerListOut c : l) {
|
|
|
+ if (c.getShareType().equals("1")) {
|
|
|
+ c.setAdminName("暂无");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return p;
|
|
|
}
|
|
|
|
|
|
@Override
|