Explorar el Código

(主账号)转变成企业用户后之前的订单统计的角标还是会统计。
(子账号)绑定企业用户后,之前自己订单会带入企业订单当中,包括待评价的订单

liangpeile hace 1 año
padre
commit
568b2102a5

+ 1 - 0
crmeb-admin/src/main/java/com/zbkj/admin/controller/platform/NewPlatformApi.java

@@ -240,6 +240,7 @@ public class NewPlatformApi {
             }
             LambdaQueryWrapper<UserEnterprise> queryWrapper2 = new LambdaQueryWrapper<>();
             queryWrapper2.eq(UserEnterprise::getUserId, userBypassAccount.getUserId());
+            queryWrapper2.eq(UserEnterprise::getIsDelete,0 );
             List<UserEnterprise> list2 = userEnterpriseService.list(queryWrapper2);
             if (list2.size() != 0) {
                 return CommonResult.failed("该用户已认证过企业用户");

+ 2 - 0
crmeb-front/src/main/java/com/zbkj/front/service/impl/UserCenterServiceImpl.java

@@ -96,6 +96,7 @@ public class UserCenterServiceImpl extends ServiceImpl<UserDao, User> implements
     @Override
     public UserCenterResponse getUserCenterInfo() {
         Integer uid = userService.getUserId();
+       uid =50;
         UserCenterResponse response = new UserCenterResponse();
         response.setCenterBanner(systemGroupDataService.getListMapByGid(GroupDataConstants.GROUP_DATA_ID_USER_CENTER_BANNER));
         response.setCenterMenu(systemGroupDataService.getListMapByGid(GroupDataConstants.GROUP_DATA_ID_USER_CENTER_MENU));
@@ -134,6 +135,7 @@ public class UserCenterServiceImpl extends ServiceImpl<UserDao, User> implements
         //企业用户获取企业以及部门
         LambdaQueryWrapper<UserEnterprise> queryWrapper = new LambdaQueryWrapper<>();
         queryWrapper.eq(UserEnterprise::getUserId, uid);
+        queryWrapper.eq(UserEnterprise::getIsDelete,0);
         UserEnterprise userEnterprise = userEnterpriseService.getOne(queryWrapper);
         User user1 = userService.getById(uid);