dashboard-web-app/src/main/java/org/inventory/hub/controller/ProductsInventoryController.java [124:130]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                final String currentLocation = productInventory.getLocation();
                Integer totalItems = locations.get(currentLocation);
                if (totalItems == null) {
                    totalItems = Integer.valueOf(productInventory.getTotalCount());
                    locations.put(currentLocation, totalItems);
                } else {
                    locations.put(currentLocation, totalItems + Integer.valueOf(productInventory.getTotalCount()));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dashboard-web-app/src/main/java/org/inventory/hub/controller/ProductsInventoryController.java [185:191]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                final String currentLocation = productInventory.getLocation();
                Integer totalItems = locations.get(currentLocation);
                if (totalItems == null) {
                    totalItems = Integer.valueOf(productInventory.getTotalCount());
                    locations.put(currentLocation, totalItems);
                } else {
                    locations.put(currentLocation, totalItems + Integer.valueOf(productInventory.getTotalCount()));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



