|
@@ -6,6 +6,7 @@ import cn.hutool.json.JSONArray;
|
|
import cn.hutool.json.JSONUtil;
|
|
import cn.hutool.json.JSONUtil;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.github.pagehelper.PageInfo;
|
|
@@ -256,7 +257,6 @@ public class NewFrontApi {
|
|
LambdaQueryWrapper<UserBypassAccount> queryWrapper2 = new LambdaQueryWrapper<>();
|
|
LambdaQueryWrapper<UserBypassAccount> queryWrapper2 = new LambdaQueryWrapper<>();
|
|
//获取登录账号信息
|
|
//获取登录账号信息
|
|
User user = userService.getInfo();
|
|
User user = userService.getInfo();
|
|
- Integer enterpriseId1 = 0;
|
|
|
|
if (null != user.getIsAllOrders()) {
|
|
if (null != user.getIsAllOrders()) {
|
|
if (3 == user.getIsEnterpriseUser() && 1 == user.getIsAllOrders()) {
|
|
if (3 == user.getIsEnterpriseUser() && 1 == user.getIsAllOrders()) {
|
|
LambdaQueryWrapper<UserBypassAccount> queryWrapper3 = new LambdaQueryWrapper<>();
|
|
LambdaQueryWrapper<UserBypassAccount> queryWrapper3 = new LambdaQueryWrapper<>();
|
|
@@ -264,10 +264,6 @@ public class NewFrontApi {
|
|
UserBypassAccount one = userBypassAccountService.getOne(queryWrapper3);
|
|
UserBypassAccount one = userBypassAccountService.getOne(queryWrapper3);
|
|
Integer enterpriseId = one.getEnterpriseId();
|
|
Integer enterpriseId = one.getEnterpriseId();
|
|
id = String.valueOf(enterpriseId);
|
|
id = String.valueOf(enterpriseId);
|
|
-
|
|
|
|
- UserEnterprise userEnterprise = userEnterpriseService.getById(id);
|
|
|
|
- enterpriseId1 = userEnterprise.getUserId();
|
|
|
|
-
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -286,9 +282,27 @@ public class NewFrontApi {
|
|
List<Integer> ids = list.stream()
|
|
List<Integer> ids = list.stream()
|
|
.map(UserBypassAccount::getUserId)
|
|
.map(UserBypassAccount::getUserId)
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
- ids.add(enterpriseId1);
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
+ LambdaQueryWrapper<UserEnterprise> enterpriseLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
+ enterpriseLambdaQueryWrapper.in(UserEnterprise::getRealName, name.split(","));
|
|
|
|
+ enterpriseLambdaQueryWrapper.eq(UserEnterprise::getIsDelete, 0);
|
|
|
|
+ List<UserEnterprise> list1 = userEnterpriseService.list(enterpriseLambdaQueryWrapper);
|
|
|
|
+ if (null != list1 && list1.size() > 0){
|
|
|
|
+ for (UserEnterprise userEnterprise : list1) {
|
|
|
|
+ ids.add(userEnterprise.getUserId());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (StringUtils.isBlank(name)){
|
|
|
|
+ LambdaQueryWrapper<UserEnterprise> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
+ queryWrapper.in(UserEnterprise::getId, id);
|
|
|
|
+ queryWrapper.eq(UserEnterprise::getIsDelete, 0);
|
|
|
|
+ List<UserEnterprise> list2 = userEnterpriseService.list(queryWrapper);
|
|
|
|
+ if (null != list2 && list2.size() > 0){
|
|
|
|
+ for (UserEnterprise userEnterprise : list2) {
|
|
|
|
+ ids.add(userEnterprise.getUserId());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
return CommonResult.success(CommonPage.restPage(frontOrderService.list2(isRemit, status, pageRequest, ids,
|
|
return CommonResult.success(CommonPage.restPage(frontOrderService.list2(isRemit, status, pageRequest, ids,
|
|
Integer.valueOf(id), department
|
|
Integer.valueOf(id), department
|
|
, name)));
|
|
, name)));
|
|
@@ -539,7 +553,7 @@ public class NewFrontApi {
|
|
public CommonResult<?> departUser(@RequestParam(name = "departmentId", required = false) String departmentId,
|
|
public CommonResult<?> departUser(@RequestParam(name = "departmentId", required = false) String departmentId,
|
|
@RequestParam(name = "organizationId", required = false) String organizationId) {
|
|
@RequestParam(name = "organizationId", required = false) String organizationId) {
|
|
|
|
|
|
- return organizationDepartmentService.departUser(departmentId,organizationId);
|
|
|
|
|
|
+ return organizationDepartmentService.departUser(departmentId, organizationId);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|