All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.commerce.service.persistence.CommerceOrderItemFinder Maven / Gradle / Ivy

There is a newer version: 87.0.0
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.commerce.service.persistence;

import org.osgi.annotation.versioning.ProviderType;

/**
 * @author Alessio Antonio Rendina
 * @generated
 */
@ProviderType
public interface CommerceOrderItemFinder {

	public int countByG_A_O(
		long groupId, long commerceAccountId, int[] orderStatuses);

	public java.util.List
		findByAvailableQuantity(long commerceOrderId);

	public java.util.List
		findByAvailableQuantity(long commerceOrderId, int start, int end);

	public java.util.List
		findByG_A_O(
			long groupId, long commerceAccountId, int[] orderStatuses,
			int start, int end);

	public java.math.BigDecimal getCommerceOrderItemsQuantity(
		long commerceOrderId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy