Subversion Repositories SmartDukaan

Rev

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

Rev 5285 Rev 5290
Line 211... Line 211...
211
    private void sendMailForPLBMismatches(Long warehouseId, Map<String, PLBDetails> currentInventory)
211
    private void sendMailForPLBMismatches(Long warehouseId, Map<String, PLBDetails> currentInventory)
212
            throws InventoryServiceException, TException, MessagingException {
212
            throws InventoryServiceException, TException, MessagingException {
213
        if (fullPlbSync) {
213
        if (fullPlbSync) {
214
            loadHotspotMappings();
214
            loadHotspotMappings();
215
            Map<Item, PLBDetails> mismatches = new HashMap<Item, PLBDetails>();
215
            Map<Item, PLBDetails> mismatches = new HashMap<Item, PLBDetails>();
216
            Client snapshotClient = new CatalogClient().getClient();
-
 
217
            List<Item> items = snapshotClient.getAllItems(true);
216
            List<Item> items = fetchItems();
218
            for (Item item : items) {
217
            for (Item item : items) {
219
                if (ItemType.NON_SERIALIZED.equals(item.getType())) {
218
                if (ItemType.NON_SERIALIZED.equals(item.getType())) {
220
                    continue;
219
                    continue;
221
                }
220
                }
222
 
221