Subversion Repositories SmartDukaan

Rev

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

Rev 32493 Rev 32585
Line 147... Line 147...
147
        List<TagListing> tags = tagListingRepository.selectByItemIdsAndTagIds(itemIds, tagIds);
147
        List<TagListing> tags = tagListingRepository.selectByItemIdsAndTagIds(itemIds, tagIds);
148
        tags.stream().forEach(tagListing -> {
148
        tags.stream().forEach(tagListing -> {
149
            if (!tagListing.isActive() || tagListing.isHotDeals()) {
149
            if (!tagListing.isActive() || tagListing.isHotDeals()) {
150
                // show actual values here
150
                // show actual values here
151
            } else {
151
            } else {
152
                itemAvailabilityMap.put(tagListing.getItemId(), 100);
152
                itemAvailabilityMap.put(tagListing.getItemId(), 400);
153
            }
153
            }
154
        });
154
        });
155
        return itemAvailabilityMap;
155
        return itemAvailabilityMap;
156
    }
156
    }
157
 
157