|
@@ -133,7 +133,7 @@ public class UserLogic {
|
|
|
user.setServiceTime(new Date());
|
|
|
user.setLastLoginTime(new Date());
|
|
|
user.setCreateTime(new Date());
|
|
|
- user.setCompanyWechatId(currentCompanyWechat.getCompanyWechatId());
|
|
|
+ user.setCompanyId(currentCompanyWechat.getCurrentCompanyWechatId());
|
|
|
user.setCompanyName(currentCompanyWechat.getCompanyName());
|
|
|
userService.save(user);
|
|
|
log.info("【注册成为会员】:{}", user);
|
|
@@ -172,7 +172,7 @@ public class UserLogic {
|
|
|
// .list();
|
|
|
UserServiceWait waitUser = userServiceWaitService.lambdaQuery()
|
|
|
.eq(UserServiceWait::getMobile, user.getMobile())
|
|
|
- .eq(UserServiceWait::getCompanyWechatId, user.getCompanyWechatId())
|
|
|
+ .eq(UserServiceWait::getCompanyId, user.getCompanyId())
|
|
|
.one();
|
|
|
|
|
|
if (Objects.nonNull(waitUser)) {
|
|
@@ -180,7 +180,7 @@ public class UserLogic {
|
|
|
Integer count = userService.lambdaQuery()
|
|
|
.eq(User::getMobile, user.getMobile())
|
|
|
.eq(User::getType, UserTypeEnum.SERVICE.toString())
|
|
|
- .eq(User::getCompanyWechatId, user.getCompanyWechatId())
|
|
|
+ .eq(User::getCompanyId, user.getCompanyId())
|
|
|
.count();
|
|
|
if (count < 1) {
|
|
|
user.setType(UserTypeEnum.SERVICE.toString());
|
|
@@ -191,7 +191,7 @@ public class UserLogic {
|
|
|
// user.setWorkQrcode(list.get(0).getQrCode());
|
|
|
user.setWebsitId(waitUser.getWebsitId());
|
|
|
user.setWebsitName(waitUser.getWebsitName());
|
|
|
- user.setCompanyWechatId(currentCompanyWechat.getCompanyWechatId());
|
|
|
+ user.setCompanyId(currentCompanyWechat.getCurrentCompanyWechatId());
|
|
|
user.setCompanyName(currentCompanyWechat.getCompanyName());
|
|
|
|
|
|
waitUser.setUserId(user.getUserId())
|
|
@@ -233,7 +233,7 @@ public class UserLogic {
|
|
|
user.setServiceTime(new Date());
|
|
|
user.setWebsitId(service.getWebsitId());
|
|
|
user.setWebsitName(service.getWebsitName());
|
|
|
- user.setCompanyWechatId(service.getCompanyWechatId());
|
|
|
+ user.setCompanyId(service.getCompanyId());
|
|
|
user.setCompanyName(service.getCompanyName());
|
|
|
}
|
|
|
|
|
@@ -255,7 +255,7 @@ public class UserLogic {
|
|
|
return userService.lambdaQuery()
|
|
|
.eq(User::getMobile,mobile)
|
|
|
.eq(User::getStatus,true)
|
|
|
- .eq(User::getCompanyWechatId,companyWechatId).one();
|
|
|
+ .eq(User::getCompanyId,companyWechatId).one();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -387,7 +387,7 @@ public class UserLogic {
|
|
|
// .eq(EnterpriseWechatWorker::getCorpId,currentCompanyWechat.getCorpId())
|
|
|
// .list();
|
|
|
List<UserServiceWait> waitList = userServiceWaitService.lambdaQuery()
|
|
|
- .eq(UserServiceWait::getCompanyWechatId, currentCompanyWechat.getCompanyWechatId())
|
|
|
+ .eq(UserServiceWait::getCompanyId, currentCompanyWechat.getCompanyWechatId())
|
|
|
.eq(UserServiceWait::getMobile, mobile)
|
|
|
.list();
|
|
|
|
|
@@ -402,7 +402,7 @@ public class UserLogic {
|
|
|
Integer count = userService.lambdaQuery()
|
|
|
.eq(User::getWorkUserId, workUserId)
|
|
|
.eq(User::getType, UserTypeEnum.SERVICE.toString())
|
|
|
- .eq(User::getCompanyWechatId,currentCompanyWechat.getCompanyWechatId())
|
|
|
+ .eq(User::getCompanyId,currentCompanyWechat.getCompanyWechatId())
|
|
|
.count();
|
|
|
if (count < 1) {
|
|
|
user.setType(UserTypeEnum.SERVICE.toString());
|
|
@@ -533,7 +533,7 @@ public class UserLogic {
|
|
|
.eq(OrderShare::getOpenId,user.getOpenId())
|
|
|
.ne(OrderShare::getWorkUserId,"")
|
|
|
.eq(StringUtils.isNotEmpty(status),OrderShare::getStatus,status)
|
|
|
- .eq(OrderShare::getCompanyWechatId,user.getCompanyWechatId())
|
|
|
+ .eq(OrderShare::getCompanyWechatId,user.getCompanyId())
|
|
|
.orderByDesc(OrderShare::getCreateTime)
|
|
|
.page(new Page<>(pageNum, pageSize));
|
|
|
}
|
|
@@ -548,7 +548,7 @@ public class UserLogic {
|
|
|
}
|
|
|
List<OrderShare> list = orderShareService.lambdaQuery()
|
|
|
.eq(OrderShare::getOpenId,user.getOpenId())
|
|
|
- .eq(OrderShare::getCompanyWechatId,user.getCompanyWechatId())
|
|
|
+ .eq(OrderShare::getCompanyWechatId,user.getCompanyId())
|
|
|
.and(v -> v.like(OrderShare::getWorkUserId,user.getWorkUserId()).or().like(OrderShare::getWorkUserId,user.getUserId()))
|
|
|
.eq(OrderShare::getStatus, OrderShareStatusEnum.OVER.toString())
|
|
|
.list();
|
|
@@ -588,7 +588,7 @@ public class UserLogic {
|
|
|
UserVisit userVisit = new UserVisit();
|
|
|
userVisit.setUserId(userId);
|
|
|
userVisit.setVisitTime(new Date());
|
|
|
- userVisit.setCompanyWechatId(currentCompanyWechat.getCurrentCompanyWechatId());
|
|
|
+ userVisit.setCompanyId(currentCompanyWechat.getCurrentCompanyWechatId());
|
|
|
userVisit.setCompanyName(currentCompanyWechat.getCurrentCompanyName());
|
|
|
userVisit.setWebsitId("");
|
|
|
userVisit.insert();
|
|
@@ -614,7 +614,7 @@ public class UserLogic {
|
|
|
user.setWebsitId(adminWebsit.getWebsitId());
|
|
|
user.setWebsitName(adminWebsit.getName());
|
|
|
user.setCompanyName(adminWebsit.getCompanyName());
|
|
|
- user.setCompanyWechatId(adminWebsit.getCompanyWechatId());
|
|
|
+ user.setCompanyId(adminWebsit.getCompanyId());
|
|
|
user.updateById();
|
|
|
return adminWebsit;
|
|
|
}
|
|
@@ -678,7 +678,7 @@ public class UserLogic {
|
|
|
user.setWebsitId(adminWebsit.getWebsitId());
|
|
|
user.setWebsitName(adminWebsit.getName());
|
|
|
user.setCompanyName(adminWebsit.getCompanyName());
|
|
|
- user.setCompanyWechatId(adminWebsit.getCompanyWechatId());
|
|
|
+ user.setCompanyId(adminWebsit.getCompanyId());
|
|
|
user.updateById();
|
|
|
return ;
|
|
|
|