$scope.getLocationByOrderIdentifier = function (orderId) {
                var found = $scope.locations.filter(function (element, index, array) {
                    return (element.locationOrderIdentifier == orderId);
                });
                if (found.length == 1) {