| | |
| | | |
| | | |
| | | @Override |
| | | public void visitsSelfCancel(Integer visitId,Integer memberId){ |
| | | public void visitsSelfCancel(Integer visitId,Integer memberId,String openid){ |
| | | Visits visits = visitsMapper.selectById(visitId); |
| | | if(Objects.isNull(visits)){ |
| | | throw new BusinessException(ResponseStatus.DATA_EMPTY); |
| | | } |
| | | if(!(Constants.equalsInteger(memberId,visits.getMemberId()))){ |
| | | /* if(!(Constants.equalsInteger(memberId,visits.getMemberId()))){ |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"无此操作权限"); |
| | | }*/ |
| | | if(!StringUtils.equals(openid,visits.getOpenid())){ |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"无此操作权限"); |
| | | } |
| | | this.visitsCancelBiz(visits); |
| | |
| | | } |
| | | if(!( |
| | | CollectionUtils.isNotEmpty(loginUserInfo.getPermissions()) && |
| | | loginUserInfo.getPermissions().stream().filter(i->i.equals("business:visits:cancel")).collect(Collectors.toList()).size()>0)){ |
| | | loginUserInfo.getPermissions().stream().filter(i->i.equals("business:visits:cancel")) |
| | | .collect(Collectors.toList()).size()>0)){ |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"无此操作权限"); |
| | | } |
| | | this.visitsCancelBiz(visits); |
| | |
| | | .eq(Visits::getId,visits.getId()); |
| | | //访客报备 |
| | | if(Constants.equalsInteger(visits.getType(),Constants.TWO)){ |
| | | if(!(Constants.equalsInteger(visits.getStatus(),Constants.VisitStatus.waitCheck)||Constants.equalsInteger(visits.getStatus(),Constants.VisitStatus.submitCheck) |
| | | if(!(Constants.equalsInteger(visits.getStatus(),Constants.VisitStatus.waitCheck) |
| | | ||Constants.equalsInteger(visits.getStatus(),Constants.VisitStatus.submitCheck) |
| | | || Constants.equalsInteger(visits.getStatus(),Constants.VisitStatus.pass))){ |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"访客记录状态错误,无法进行该操作"); |
| | | } |