Subversion Repositories SmartDukaan

Rev

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

Rev 31686 Rev 31727
Line 769... Line 769...
769
        LOGGER.info("partnerTicketCount {}", partnerTicketCount);
769
        LOGGER.info("partnerTicketCount {}", partnerTicketCount);
770
 
770
 
771
        List<PartnerTargetAchievementModel> ptams = new ArrayList<>();
771
        List<PartnerTargetAchievementModel> ptams = new ArrayList<>();
772
 
772
 
773
        if (fofoIds != null && fofoIds.size() > 0) {
773
        if (fofoIds != null && fofoIds.size() > 0) {
774
            List<Integer> fofoIdl = new ArrayList<>(fofoIds);
-
 
775
            List<Integer> fofoIdList = fofoStoreRepository.selectByRetailerIds(fofoIdl).stream()
774
            List<Integer> fofoIdList = fofoStoreRepository.selectByRetailerIds(new ArrayList<>(fofoIds)).stream()
776
                    .filter(x -> (!x.isInternal() && (activationType == null || x.getActivationType().equals(activationType))))
775
                    .filter(x -> (!x.isInternal() && (activationType == null || x.getActivationType().equals(activationType))))
777
                    .map(x -> x.getId()).collect(Collectors.toList());
776
                    .map(x -> x.getId()).collect(Collectors.toList());
778
 
777
 
779
            LocalDateTime startDate = LocalDate.now().atStartOfDay();
778
            LocalDateTime startDate = LocalDate.now().atStartOfDay();
780
 
779