Click or drag to resize

CurrentBalanceExtensionsGetCurrentBalance Method

Gets the current balance for the specified products.

Namespace:  Aloe.EnterpriseOne.Model.Logistics.Inventory
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public static IEnumerable<CurrentBalance> GetCurrentBalance(
	this IEnumerable<Product> products,
	IEnumerable<EnterpriseCompany> enterpriseCompanies = null,
	IEnumerable<Store> stores = null,
	IEnumerable<StoreBin> storeBins = null,
	IEnumerable<Lot> lots = null,
	IEnumerable<SerialNumber> serialNumbers = null,
	IEnumerable<ProductVariant> productVariants = null
)

Parameters

products
Type: System.Collections.GenericIEnumerableProduct
The products.
enterpriseCompanies (Optional)
Type: System.Collections.GenericIEnumerableEnterpriseCompany
The enterprise companies.
stores (Optional)
Type: System.Collections.GenericIEnumerableStore
The stores.
storeBins (Optional)
Type: System.Collections.GenericIEnumerableStoreBin
The store bins.
lots (Optional)
Type: System.Collections.GenericIEnumerableLot
The lots.
serialNumbers (Optional)
Type: System.Collections.GenericIEnumerableSerialNumber
The serial numbers.
productVariants (Optional)
Type: System.Collections.GenericIEnumerableProductVariant
The product variants.

Return Value

Type: IEnumerableCurrentBalance

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableProduct. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also