Interface CommerceInventoryAuditPersistence
- All Superinterfaces:
com.liferay.portal.kernel.service.persistence.BasePersistence<CommerceInventoryAudit>
Caching information and settings can be found in portal.properties
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cacheResult
(CommerceInventoryAudit commerceInventoryAudit) Caches the commerce inventory audit in the entity cache if it is enabled.void
cacheResult
(List<CommerceInventoryAudit> commerceInventoryAudits) Caches the commerce inventory audits in the entity cache if it is enabled.int
countAll()
Returns the number of commerce inventory audits.int
countByC_S_U
(long companyId, String sku, String unitOfMeasureKey) Returns the number of commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.int
countByLtCreateDate
(Date createDate) Returns the number of commerce inventory audits where createDate < ?.create
(long commerceInventoryAuditId) Creates a new commerce inventory audit with the primary key.fetchByC_S_U_First
(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the first commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.fetchByC_S_U_Last
(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the last commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.fetchByLtCreateDate_First
(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the first commerce inventory audit in the ordered set where createDate < ?.fetchByLtCreateDate_Last
(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the last commerce inventory audit in the ordered set where createDate < ?.fetchByPrimaryKey
(long commerceInventoryAuditId) Returns the commerce inventory audit with the primary key or returnsnull
if it could not be found.findAll()
Returns all the commerce inventory audits.findAll
(int start, int end) Returns a range of all the commerce inventory audits.findAll
(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns an ordered range of all the commerce inventory audits.findAll
(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator, boolean useFinderCache) Returns an ordered range of all the commerce inventory audits.findByC_S_U
(long companyId, String sku, String unitOfMeasureKey) Returns all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByC_S_U
(long companyId, String sku, String unitOfMeasureKey, int start, int end) Returns a range of all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByC_S_U
(long companyId, String sku, String unitOfMeasureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns an ordered range of all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByC_S_U
(long companyId, String sku, String unitOfMeasureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator, boolean useFinderCache) Returns an ordered range of all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByC_S_U_First
(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the first commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByC_S_U_Last
(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the last commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByC_S_U_PrevAndNext
(long commerceInventoryAuditId, long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the commerce inventory audits before and after the current commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.findByLtCreateDate
(Date createDate) Returns all the commerce inventory audits where createDate < ?.findByLtCreateDate
(Date createDate, int start, int end) Returns a range of all the commerce inventory audits where createDate < ?.findByLtCreateDate
(Date createDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns an ordered range of all the commerce inventory audits where createDate < ?.findByLtCreateDate
(Date createDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator, boolean useFinderCache) Returns an ordered range of all the commerce inventory audits where createDate < ?.findByLtCreateDate_First
(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the first commerce inventory audit in the ordered set where createDate < ?.findByLtCreateDate_Last
(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the last commerce inventory audit in the ordered set where createDate < ?.findByLtCreateDate_PrevAndNext
(long commerceInventoryAuditId, Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the commerce inventory audits before and after the current commerce inventory audit in the ordered set where createDate < ?.findByPrimaryKey
(long commerceInventoryAuditId) Returns the commerce inventory audit with the primary key or throws aNoSuchInventoryAuditException
if it could not be found.remove
(long commerceInventoryAuditId) Removes the commerce inventory audit with the primary key from the database.void
Removes all the commerce inventory audits from the database.void
removeByC_S_U
(long companyId, String sku, String unitOfMeasureKey) Removes all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ? from the database.void
removeByLtCreateDate
(Date createDate) Removes all the commerce inventory audits where createDate < ? from the database.updateImpl
(CommerceInventoryAudit commerceInventoryAudit) Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
-
Method Details
-
findByLtCreateDate
Returns all the commerce inventory audits where createDate < ?.- Parameters:
createDate
- the create date- Returns:
- the matching commerce inventory audits
-
findByLtCreateDate
Returns a range of all the commerce inventory audits where createDate < ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
createDate
- the create datestart
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)- Returns:
- the range of matching commerce inventory audits
-
findByLtCreateDate
List<CommerceInventoryAudit> findByLtCreateDate(Date createDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns an ordered range of all the commerce inventory audits where createDate < ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
createDate
- the create datestart
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching commerce inventory audits
-
findByLtCreateDate
List<CommerceInventoryAudit> findByLtCreateDate(Date createDate, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator, boolean useFinderCache) Returns an ordered range of all the commerce inventory audits where createDate < ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
createDate
- the create datestart
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching commerce inventory audits
-
findByLtCreateDate_First
CommerceInventoryAudit findByLtCreateDate_First(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) throws NoSuchInventoryAuditException Returns the first commerce inventory audit in the ordered set where createDate < ?.- Parameters:
createDate
- the create dateorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a matching commerce inventory audit could not be found
-
fetchByLtCreateDate_First
CommerceInventoryAudit fetchByLtCreateDate_First(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the first commerce inventory audit in the ordered set where createDate < ?.- Parameters:
createDate
- the create dateorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching commerce inventory audit, or
null
if a matching commerce inventory audit could not be found
-
findByLtCreateDate_Last
CommerceInventoryAudit findByLtCreateDate_Last(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) throws NoSuchInventoryAuditException Returns the last commerce inventory audit in the ordered set where createDate < ?.- Parameters:
createDate
- the create dateorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a matching commerce inventory audit could not be found
-
fetchByLtCreateDate_Last
CommerceInventoryAudit fetchByLtCreateDate_Last(Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the last commerce inventory audit in the ordered set where createDate < ?.- Parameters:
createDate
- the create dateorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching commerce inventory audit, or
null
if a matching commerce inventory audit could not be found
-
findByLtCreateDate_PrevAndNext
CommerceInventoryAudit[] findByLtCreateDate_PrevAndNext(long commerceInventoryAuditId, Date createDate, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) throws NoSuchInventoryAuditException Returns the commerce inventory audits before and after the current commerce inventory audit in the ordered set where createDate < ?.- Parameters:
commerceInventoryAuditId
- the primary key of the current commerce inventory auditcreateDate
- the create dateorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a commerce inventory audit with the primary key could not be found
-
removeByLtCreateDate
Removes all the commerce inventory audits where createDate < ? from the database.- Parameters:
createDate
- the create date
-
countByLtCreateDate
Returns the number of commerce inventory audits where createDate < ?.- Parameters:
createDate
- the create date- Returns:
- the number of matching commerce inventory audits
-
findByC_S_U
Returns all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure key- Returns:
- the matching commerce inventory audits
-
findByC_S_U
List<CommerceInventoryAudit> findByC_S_U(long companyId, String sku, String unitOfMeasureKey, int start, int end) Returns a range of all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keystart
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)- Returns:
- the range of matching commerce inventory audits
-
findByC_S_U
List<CommerceInventoryAudit> findByC_S_U(long companyId, String sku, String unitOfMeasureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns an ordered range of all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keystart
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching commerce inventory audits
-
findByC_S_U
List<CommerceInventoryAudit> findByC_S_U(long companyId, String sku, String unitOfMeasureKey, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator, boolean useFinderCache) Returns an ordered range of all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keystart
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching commerce inventory audits
-
findByC_S_U_First
CommerceInventoryAudit findByC_S_U_First(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) throws NoSuchInventoryAuditException Returns the first commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keyorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a matching commerce inventory audit could not be found
-
fetchByC_S_U_First
CommerceInventoryAudit fetchByC_S_U_First(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the first commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keyorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching commerce inventory audit, or
null
if a matching commerce inventory audit could not be found
-
findByC_S_U_Last
CommerceInventoryAudit findByC_S_U_Last(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) throws NoSuchInventoryAuditException Returns the last commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keyorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a matching commerce inventory audit could not be found
-
fetchByC_S_U_Last
CommerceInventoryAudit fetchByC_S_U_Last(long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns the last commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keyorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching commerce inventory audit, or
null
if a matching commerce inventory audit could not be found
-
findByC_S_U_PrevAndNext
CommerceInventoryAudit[] findByC_S_U_PrevAndNext(long commerceInventoryAuditId, long companyId, String sku, String unitOfMeasureKey, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) throws NoSuchInventoryAuditException Returns the commerce inventory audits before and after the current commerce inventory audit in the ordered set where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
commerceInventoryAuditId
- the primary key of the current commerce inventory auditcompanyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure keyorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a commerce inventory audit with the primary key could not be found
-
removeByC_S_U
Removes all the commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ? from the database.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure key
-
countByC_S_U
Returns the number of commerce inventory audits where companyId = ? and sku = ? and unitOfMeasureKey = ?.- Parameters:
companyId
- the company IDsku
- the skuunitOfMeasureKey
- the unit of measure key- Returns:
- the number of matching commerce inventory audits
-
cacheResult
Caches the commerce inventory audit in the entity cache if it is enabled.- Parameters:
commerceInventoryAudit
- the commerce inventory audit
-
cacheResult
Caches the commerce inventory audits in the entity cache if it is enabled.- Parameters:
commerceInventoryAudits
- the commerce inventory audits
-
create
Creates a new commerce inventory audit with the primary key. Does not add the commerce inventory audit to the database.- Parameters:
commerceInventoryAuditId
- the primary key for the new commerce inventory audit- Returns:
- the new commerce inventory audit
-
remove
Removes the commerce inventory audit with the primary key from the database. Also notifies the appropriate model listeners.- Parameters:
commerceInventoryAuditId
- the primary key of the commerce inventory audit- Returns:
- the commerce inventory audit that was removed
- Throws:
NoSuchInventoryAuditException
- if a commerce inventory audit with the primary key could not be found
-
updateImpl
-
findByPrimaryKey
CommerceInventoryAudit findByPrimaryKey(long commerceInventoryAuditId) throws NoSuchInventoryAuditException Returns the commerce inventory audit with the primary key or throws aNoSuchInventoryAuditException
if it could not be found.- Parameters:
commerceInventoryAuditId
- the primary key of the commerce inventory audit- Returns:
- the commerce inventory audit
- Throws:
NoSuchInventoryAuditException
- if a commerce inventory audit with the primary key could not be found
-
fetchByPrimaryKey
Returns the commerce inventory audit with the primary key or returnsnull
if it could not be found.- Parameters:
commerceInventoryAuditId
- the primary key of the commerce inventory audit- Returns:
- the commerce inventory audit, or
null
if a commerce inventory audit with the primary key could not be found
-
findAll
List<CommerceInventoryAudit> findAll()Returns all the commerce inventory audits.- Returns:
- the commerce inventory audits
-
findAll
Returns a range of all the commerce inventory audits.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
start
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)- Returns:
- the range of commerce inventory audits
-
findAll
List<CommerceInventoryAudit> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator) Returns an ordered range of all the commerce inventory audits.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
start
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of commerce inventory audits
-
findAll
List<CommerceInventoryAudit> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CommerceInventoryAudit> orderByComparator, boolean useFinderCache) Returns an ordered range of all the commerce inventory audits.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromCommerceInventoryAuditModelImpl
.- Parameters:
start
- the lower bound of the range of commerce inventory auditsend
- the upper bound of the range of commerce inventory audits (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of commerce inventory audits
-
removeAll
void removeAll()Removes all the commerce inventory audits from the database. -
countAll
int countAll()Returns the number of commerce inventory audits.- Returns:
- the number of commerce inventory audits
-