@ProviderType public class CommerceOrderItemLocalServiceWrapper extends java.lang.Object implements CommerceOrderItemLocalService, com.liferay.portal.kernel.service.ServiceWrapper<CommerceOrderItemLocalService>
CommerceOrderItemLocalService.CommerceOrderItemLocalService| Constructor and Description |
|---|
CommerceOrderItemLocalServiceWrapper(CommerceOrderItemLocalService commerceOrderItemLocalService) |
| Modifier and Type | Method and Description |
|---|---|
CommerceOrderItem |
addCommerceOrderItem(CommerceOrderItem commerceOrderItem)
Adds the commerce order item to the database.
|
CommerceOrderItem |
addCommerceOrderItem(long commerceOrderId,
long cpInstanceId,
int quantity,
int shippedQuantity,
java.lang.String json,
CommerceContext commerceContext,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
CommerceOrderItem |
createCommerceOrderItem(long commerceOrderItemId)
Creates a new commerce order item with the primary key.
|
CommerceOrderItem |
deleteCommerceOrderItem(CommerceOrderItem commerceOrderItem)
Deletes the commerce order item from the database.
|
CommerceOrderItem |
deleteCommerceOrderItem(long commerceOrderItemId)
Deletes the commerce order item with the primary key from the database.
|
void |
deleteCommerceOrderItems(long commerceOrderId) |
void |
deleteCommerceOrderItemsByCPInstanceId(long cpInstanceId) |
com.liferay.portal.kernel.model.PersistedModel |
deletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel) |
com.liferay.portal.kernel.dao.orm.DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
com.liferay.portal.kernel.dao.orm.Projection projection)
Returns the number of rows matching the dynamic query.
|
CommerceOrderItem |
fetchByExternalReferenceCode(long companyId,
java.lang.String externalReferenceCode) |
CommerceOrderItem |
fetchCommerceOrderItem(long commerceOrderItemId) |
CommerceOrderItem |
fetchCommerceOrderItemByReferenceCode(long companyId,
java.lang.String externalReferenceCode)
Returns the commerce order item with the matching external reference code and company.
|
com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery |
getActionableDynamicQuery() |
java.util.List<CommerceOrderItem> |
getAvailableForShipmentCommerceOrderItems(long commerceOrderId) |
CommerceOrderItem |
getCommerceOrderItem(long commerceOrderItemId)
Returns the commerce order item with the primary key.
|
java.util.List<CommerceOrderItem> |
getCommerceOrderItems(int start,
int end)
Returns a range of all the commerce order items.
|
java.util.List<CommerceOrderItem> |
getCommerceOrderItems(long commerceOrderId,
int start,
int end) |
java.util.List<CommerceOrderItem> |
getCommerceOrderItems(long commerceOrderId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceOrderItem> orderByComparator) |
java.util.List<CommerceOrderItem> |
getCommerceOrderItems(long commerceOrderId,
long cpInstanceId,
int start,
int end) |
java.util.List<CommerceOrderItem> |
getCommerceOrderItems(long commerceOrderId,
long cpInstanceId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<CommerceOrderItem> orderByComparator) |
int |
getCommerceOrderItemsCount()
Returns the number of commerce order items.
|
int |
getCommerceOrderItemsCount(long commerceOrderId) |
int |
getCommerceOrderItemsQuantity(long commerceOrderId) |
int |
getCommerceWarehouseItemQuantity(long commerceOrderItemId,
long commerceWarehouseId) |
int |
getCPInstanceQuantity(long cpInstanceId,
int orderStatus) |
com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
com.liferay.portal.kernel.model.PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
CommerceOrderItemLocalService |
getWrappedService() |
CommerceOrderItem |
incrementShippedQuantity(long commerceOrderItemId,
int shippedQuantity) |
com.liferay.portal.kernel.search.BaseModelSearchResult<CommerceOrderItem> |
search(long commerceOrderId,
java.lang.String keywords,
int start,
int end,
com.liferay.portal.kernel.search.Sort sort) |
com.liferay.portal.kernel.search.BaseModelSearchResult<CommerceOrderItem> |
search(long commerceOrderId,
java.lang.String sku,
java.lang.String name,
boolean andOperator,
int start,
int end,
com.liferay.portal.kernel.search.Sort sort) |
void |
setWrappedService(CommerceOrderItemLocalService commerceOrderItemLocalService) |
CommerceOrderItem |
updateCommerceOrderItem(CommerceOrderItem commerceOrderItem)
Updates the commerce order item in the database or adds it if it does not yet exist.
|
CommerceOrderItem |
updateCommerceOrderItem(long commerceOrderItemId,
int quantity,
CommerceContext commerceContext) |
CommerceOrderItem |
updateCommerceOrderItem(long commerceOrderItemId,
int quantity,
java.lang.String json,
CommerceContext commerceContext) |
CommerceOrderItem |
updateCommerceOrderItemPrice(long commerceOrderItemId,
CommerceContext commerceContext) |
CommerceOrderItem |
upsertCommerceOrderItem(long commerceOrderId,
long cpInstanceId,
int quantity,
int shippedQuantity,
java.lang.String json,
CommerceContext commerceContext,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
public CommerceOrderItemLocalServiceWrapper(CommerceOrderItemLocalService commerceOrderItemLocalService)
public CommerceOrderItem addCommerceOrderItem(CommerceOrderItem commerceOrderItem)
addCommerceOrderItem in interface CommerceOrderItemLocalServicecommerceOrderItem - the commerce order itempublic CommerceOrderItem addCommerceOrderItem(long commerceOrderId, long cpInstanceId, int quantity, int shippedQuantity, java.lang.String json, CommerceContext commerceContext, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
addCommerceOrderItem in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItem createCommerceOrderItem(long commerceOrderItemId)
createCommerceOrderItem in interface CommerceOrderItemLocalServicecommerceOrderItemId - the primary key for the new commerce order itempublic CommerceOrderItem deleteCommerceOrderItem(CommerceOrderItem commerceOrderItem) throws com.liferay.portal.kernel.exception.PortalException
deleteCommerceOrderItem in interface CommerceOrderItemLocalServicecommerceOrderItem - the commerce order itemPortalExceptionpublic CommerceOrderItem deleteCommerceOrderItem(long commerceOrderItemId) throws com.liferay.portal.kernel.exception.PortalException
deleteCommerceOrderItem in interface CommerceOrderItemLocalServicecommerceOrderItemId - the primary key of the commerce order itemPortalException - if a commerce order item with the primary key could not be foundpublic void deleteCommerceOrderItems(long commerceOrderId)
throws com.liferay.portal.kernel.exception.PortalException
deleteCommerceOrderItems in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic void deleteCommerceOrderItemsByCPInstanceId(long cpInstanceId)
throws com.liferay.portal.kernel.exception.PortalException
deleteCommerceOrderItemsByCPInstanceId in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel)
throws com.liferay.portal.kernel.exception.PortalException
deletePersistedModel in interface CommerceOrderItemLocalServicedeletePersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalServicePortalExceptionpublic com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery()
dynamicQuery in interface CommerceOrderItemLocalServicepublic <T> java.util.List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
dynamicQuery in interface CommerceOrderItemLocalServicedynamicQuery - the dynamic querypublic <T> java.util.List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.commerce.model.impl.CommerceOrderItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery in interface CommerceOrderItemLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <T> java.util.List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.commerce.model.impl.CommerceOrderItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery in interface CommerceOrderItemLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
dynamicQueryCount in interface CommerceOrderItemLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
com.liferay.portal.kernel.dao.orm.Projection projection)
dynamicQueryCount in interface CommerceOrderItemLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic CommerceOrderItem fetchByExternalReferenceCode(long companyId, java.lang.String externalReferenceCode)
fetchByExternalReferenceCode in interface CommerceOrderItemLocalServicepublic CommerceOrderItem fetchCommerceOrderItem(long commerceOrderItemId)
fetchCommerceOrderItem in interface CommerceOrderItemLocalServicepublic CommerceOrderItem fetchCommerceOrderItemByReferenceCode(long companyId, java.lang.String externalReferenceCode)
fetchCommerceOrderItemByReferenceCode in interface CommerceOrderItemLocalServicecompanyId - the primary key of the companyexternalReferenceCode - the commerce order item's external reference codenull if a matching commerce order item could not be foundpublic com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface CommerceOrderItemLocalServicepublic java.util.List<CommerceOrderItem> getAvailableForShipmentCommerceOrderItems(long commerceOrderId)
getAvailableForShipmentCommerceOrderItems in interface CommerceOrderItemLocalServicepublic CommerceOrderItem getCommerceOrderItem(long commerceOrderItemId) throws com.liferay.portal.kernel.exception.PortalException
getCommerceOrderItem in interface CommerceOrderItemLocalServicecommerceOrderItemId - the primary key of the commerce order itemPortalException - if a commerce order item with the primary key could not be foundpublic java.util.List<CommerceOrderItem> getCommerceOrderItems(int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from com.liferay.commerce.model.impl.CommerceOrderItemModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
getCommerceOrderItems in interface CommerceOrderItemLocalServicestart - the lower bound of the range of commerce order itemsend - the upper bound of the range of commerce order items (not inclusive)public java.util.List<CommerceOrderItem> getCommerceOrderItems(long commerceOrderId, int start, int end)
getCommerceOrderItems in interface CommerceOrderItemLocalServicepublic java.util.List<CommerceOrderItem> getCommerceOrderItems(long commerceOrderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceOrderItem> orderByComparator)
getCommerceOrderItems in interface CommerceOrderItemLocalServicepublic java.util.List<CommerceOrderItem> getCommerceOrderItems(long commerceOrderId, long cpInstanceId, int start, int end)
getCommerceOrderItems in interface CommerceOrderItemLocalServicepublic java.util.List<CommerceOrderItem> getCommerceOrderItems(long commerceOrderId, long cpInstanceId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceOrderItem> orderByComparator)
getCommerceOrderItems in interface CommerceOrderItemLocalServicepublic int getCommerceOrderItemsCount()
getCommerceOrderItemsCount in interface CommerceOrderItemLocalServicepublic int getCommerceOrderItemsCount(long commerceOrderId)
getCommerceOrderItemsCount in interface CommerceOrderItemLocalServicepublic int getCommerceOrderItemsQuantity(long commerceOrderId)
getCommerceOrderItemsQuantity in interface CommerceOrderItemLocalServicepublic int getCommerceWarehouseItemQuantity(long commerceOrderItemId,
long commerceWarehouseId)
throws com.liferay.portal.kernel.exception.PortalException
getCommerceWarehouseItemQuantity in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic int getCPInstanceQuantity(long cpInstanceId,
int orderStatus)
getCPInstanceQuantity in interface CommerceOrderItemLocalServicepublic com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface CommerceOrderItemLocalServicepublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface CommerceOrderItemLocalServicepublic com.liferay.portal.kernel.model.PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException
getPersistedModel in interface CommerceOrderItemLocalServicegetPersistedModel in interface com.liferay.portal.kernel.service.PersistedModelLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItem incrementShippedQuantity(long commerceOrderItemId, int shippedQuantity) throws com.liferay.portal.kernel.exception.PortalException
incrementShippedQuantity in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic com.liferay.portal.kernel.search.BaseModelSearchResult<CommerceOrderItem> search(long commerceOrderId, java.lang.String keywords, int start, int end, com.liferay.portal.kernel.search.Sort sort) throws com.liferay.portal.kernel.exception.PortalException
search in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic com.liferay.portal.kernel.search.BaseModelSearchResult<CommerceOrderItem> search(long commerceOrderId, java.lang.String sku, java.lang.String name, boolean andOperator, int start, int end, com.liferay.portal.kernel.search.Sort sort) throws com.liferay.portal.kernel.exception.PortalException
search in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItem updateCommerceOrderItem(CommerceOrderItem commerceOrderItem)
updateCommerceOrderItem in interface CommerceOrderItemLocalServicecommerceOrderItem - the commerce order itempublic CommerceOrderItem updateCommerceOrderItem(long commerceOrderItemId, int quantity, CommerceContext commerceContext) throws com.liferay.portal.kernel.exception.PortalException
updateCommerceOrderItem in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItem updateCommerceOrderItem(long commerceOrderItemId, int quantity, java.lang.String json, CommerceContext commerceContext) throws com.liferay.portal.kernel.exception.PortalException
updateCommerceOrderItem in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItem updateCommerceOrderItemPrice(long commerceOrderItemId, CommerceContext commerceContext) throws com.liferay.portal.kernel.exception.PortalException
updateCommerceOrderItemPrice in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItem upsertCommerceOrderItem(long commerceOrderId, long cpInstanceId, int quantity, int shippedQuantity, java.lang.String json, CommerceContext commerceContext, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
upsertCommerceOrderItem in interface CommerceOrderItemLocalServicecom.liferay.portal.kernel.exception.PortalExceptionpublic CommerceOrderItemLocalService getWrappedService()
getWrappedService in interface com.liferay.portal.kernel.service.ServiceWrapper<CommerceOrderItemLocalService>public void setWrappedService(CommerceOrderItemLocalService commerceOrderItemLocalService)
setWrappedService in interface com.liferay.portal.kernel.service.ServiceWrapper<CommerceOrderItemLocalService>