Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* 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;
import com.liferay.commerce.model.CommerceShipmentItem;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.jsonwebservice.JSONWebService;
import com.liferay.portal.kernel.security.access.control.AccessControlled;
import com.liferay.portal.kernel.service.BaseService;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.transaction.Isolation;
import com.liferay.portal.kernel.transaction.Propagation;
import com.liferay.portal.kernel.transaction.Transactional;
import com.liferay.portal.kernel.util.OrderByComparator;
import java.math.BigDecimal;
import java.util.List;
import org.osgi.annotation.versioning.ProviderType;
/**
* Provides the remote service interface for CommerceShipmentItem. Methods of this
* service are expected to have security checks based on the propagated JAAS
* credentials because this service can be accessed remotely.
*
* @author Alessio Antonio Rendina
* @see CommerceShipmentItemServiceUtil
* @generated
*/
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(
isolation = Isolation.PORTAL,
rollbackFor = {PortalException.class, SystemException.class}
)
public interface CommerceShipmentItemService extends BaseService {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify this interface directly. Add custom service methods to com.liferay.commerce.service.impl.CommerceShipmentItemServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface. Consume the commerce shipment item remote service via injection or a org.osgi.util.tracker.ServiceTracker. Use {@link CommerceShipmentItemServiceUtil} if injection and service tracking are not available.
*/
public CommerceShipmentItem addCommerceShipmentItem(
String externalReferenceCode, long commerceShipmentId,
long commerceOrderItemId, long commerceInventoryWarehouseId,
BigDecimal quantity, String unitOfMeasureKey,
boolean validateInventory, ServiceContext serviceContext)
throws PortalException;
public CommerceShipmentItem addOrUpdateCommerceShipmentItem(
String externalReferenceCode, long commerceShipmentId,
long commerceOrderItemId, long commerceInventoryWarehouseId,
BigDecimal quantity, String unitOfMeasureKey,
boolean validateInventory, ServiceContext serviceContext)
throws PortalException;
/**
* @deprecated As of Mueller (7.2.x), pass boolean for restoring stock
*/
@Deprecated
public void deleteCommerceShipmentItem(long commerceShipmentItemId)
throws PortalException;
public void deleteCommerceShipmentItem(
long commerceShipmentItemId, boolean restoreStockQuantity)
throws PortalException;
public void deleteCommerceShipmentItems(
long commerceShipmentId, boolean restoreStockQuantity)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public CommerceShipmentItem fetchCommerceShipmentItem(
long commerceShipmentId, long commerceOrderItemId,
long commerceInventoryWarehouseId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public CommerceShipmentItem
fetchCommerceShipmentItemByExternalReferenceCode(
long companyId, String externalReferenceCode)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public CommerceShipmentItem getCommerceShipmentItem(
long commerceShipmentItemId)
throws PortalException;
/**
* @deprecated As of Athanasius (7.3.x)
*/
@Deprecated
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceShipmentItems(
long commerceOrderItemId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List getCommerceShipmentItems(
long commerceShipmentId, int start, int end,
OrderByComparator orderByComparator)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List
getCommerceShipmentItemsByCommerceOrderItemId(
long commerceOrderItemId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getCommerceShipmentItemsCount(long commerceShipmentId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getCommerceShipmentItemsCountByCommerceOrderItemId(
long commerceOrderItemId)
throws PortalException;
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public BigDecimal getCommerceShipmentOrderItemsQuantity(
long commerceShipmentId, long commerceOrderItemId)
throws PortalException;
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
public String getOSGiServiceIdentifier();
public CommerceShipmentItem updateCommerceShipmentItem(
long commerceShipmentItemId, long commerceInventoryWarehouseId,
BigDecimal quantity, boolean validateInventory)
throws PortalException;
public CommerceShipmentItem updateExternalReferenceCode(
long commerceShipmentItemId, String externalReferenceCode)
throws PortalException;
}