|
@@ -113,6 +113,8 @@ public class CustomerServiceImpl implements ICustomerService
|
|
|
//查看当前用户是否是租户管理员,是返回全部销售单数据
|
|
|
if(SecurityUtils.isLoginUserTenantAdmin()){
|
|
|
customerList = customerMapper.customerList(customer);
|
|
|
+ }else if (SecurityUtils.getUserType().equals("05")) {
|
|
|
+ customerList = customerMapper.customerList(customer);
|
|
|
}else if(containsSalesman){
|
|
|
customer.setCreateById(SecurityUtils.getUserId());
|
|
|
customerList = customerMapper.customerList(customer);
|