Subversion Repositories SmartDukaan

Rev

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

Rev 5240 Rev 5241
Line 212... Line 212...
212
                    PLBDetails plbDetails = currentInventory
212
                    PLBDetails plbDetails = currentInventory
213
                            .get(hotspotMappings.get(item.getId()));
213
                            .get(hotspotMappings.get(item.getId()));
214
                    Long currentSnapshotAvailibility = item.getItemInventory()
214
                    Long currentSnapshotAvailibility = item.getItemInventory()
215
                            .getAvailability().get(warehouseId);
215
                            .getAvailability().get(warehouseId);
216
                    if ((currentSnapshotAvailibility == null || currentSnapshotAvailibility.equals(0)) && 
216
                    if ((currentSnapshotAvailibility == null || currentSnapshotAvailibility.equals(0)) && 
217
                        (plbDetails == null || plbDetails.getQuantity().equals(0)))
217
                        (plbDetails == null || plbDetails.getQuantity().longValue() == 0))
218
                    {
218
                    {
219
                        continue;
219
                        continue;
220
                    }
220
                    }
221
 
221
 
222
                    if (currentSnapshotAvailibility == null || plbDetails == null ||
222
                    if (currentSnapshotAvailibility == null || plbDetails == null ||