Subversion Repositories SmartDukaan

Rev

Rev 28908 | Rev 29229 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28908 Rev 28977
Line 758... Line 758...
758
 
758
 
759
		return authUsers;
759
		return authUsers;
760
	}
760
	}
761
 
761
 
762
	@Override
762
	@Override
763
	public List<AuthUser> getAuthUserIds(int categoryId, EscalationType escalationType) {
763
	public List<AuthUser> getAuthUserIds(int categoryId, List<EscalationType> escalationType) {
-
 
764
	
764
		List<Position> positions = positionRepository.selectPositionbyCategoryIdAndEscalationType(categoryId,
765
		List<Position> positions = positionRepository.selectPositionbyCategoryIdAndEscalationTypes(categoryId,
765
				escalationType);
766
				escalationType);
766
		List<Integer> authIds = positions.stream().map(x -> x.getAuthUserId()).distinct().collect(Collectors.toList());
767
		List<Integer> authIds = positions.stream().map(x -> x.getAuthUserId()).distinct().collect(Collectors.toList());
767
 
768
 
768
		LOGGER.info("authIds" + authIds);
769
		LOGGER.info("authIds" + authIds);
769
 
770