Subversion Repositories SmartDukaan

Rev

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

Rev 33571 Rev 33572
Line 287... Line 287...
287
                continue;
287
                continue;
288
            }
288
            }
289
 
289
 
290
            if (!catalogMap.containsKey(item.getCatalogItemId())) {
290
            if (!catalogMap.containsKey(item.getCatalogItemId())) {
291
                if (!priceModelMap.containsKey(tagListing.getMop()) && item.getCategoryId() == 10006) {
291
                if (!priceModelMap.containsKey(tagListing.getMop()) && item.getCategoryId() == 10006) {
292
                    priceModelMap.put(tagListing.getSellingPrice(), new ArrayList<>());
292
                    priceModelMap.put(tagListing.getMop(), new ArrayList<>());
293
                }
293
                }
294
                if (item.getCategoryId() == 10006) {
294
                if (item.getCategoryId() == 10006) {
295
                    List<Integer> priceModels = priceModelMap.get(tagListing.getMop());
295
                    List<Integer> priceModels = priceModelMap.get(tagListing.getMop());
296
                    priceModels.add(item.getCatalogItemId());
296
                    priceModels.add(item.getCatalogItemId());
297
                }
297
                }