Subversion Repositories SmartDukaan

Rev

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

Rev 30458 Rev 30459
Line 874... Line 874...
874
			LOGGER.info("remarkIds {}", remarkIds);
874
			LOGGER.info("remarkIds {}", remarkIds);
875
 
875
 
876
			long todayOverallCall = 0;
876
			long todayOverallCall = 0;
877
			if (!remarkIds.isEmpty()) {
877
			if (!remarkIds.isEmpty()) {
878
 
878
 
879
				if (!authUser.getEmailId().equals(email)) {
879
				if (authUser.getEmailId().equals(email)) {
880
 
880
 
881
					todayOverallCall = partnerCollectionRemarkRepository.selectByIds(remarkIds).stream()
881
					todayOverallCall = partnerCollectionRemarkRepository.selectByIds(remarkIds).stream()
882
							.filter(x -> x.getCreateTimestamp().toLocalDate().equals(LocalDate.now()))
882
							.filter(x -> x.getCreateTimestamp().toLocalDate().equals(LocalDate.now()))
883
							.collect(Collectors.counting());
883
							.collect(Collectors.counting());
884
				} else {
884
				} else {