Click or drag to resize

LotsManagementGetLotsAvailability Method

Loads the available lots in order of their issue. The order is determined in the product definition. See LotsIssue.

Namespace:  Aloe.EnterpriseOne.Model.Logistics.Inventory.DemandManagement
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public static IEnumerable<(Lot Lot, Store Store, Quantity CurrentAvailabilityBase, Quantity ATPBase)> GetLotsAvailability(
	this Product product,
	DateTime date,
	EnterpriseCompany enterpriseCompany,
	Store store = null
)

Parameters

product
Type: Aloe.EnterpriseOne.Model.General.ProductsProduct
The product.
date
Type: SystemDateTime
The date.
enterpriseCompany
Type: Aloe.EnterpriseOne.Model.GeneralEnterpriseCompany
The enterprise company.
store (Optional)
Type: Aloe.EnterpriseOne.Model.Logistics.InventoryStore
The store.

Return Value

Type: IEnumerableValueTupleLot, Store, Quantity, Quantity

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Product. 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