ISStockLot.Quantity

Description

The number of stock items making up the stock lot.

Syntax

object.Quantity

Part Attribute Type Description
object Required
The object always implements the ISStockLot interface
Restriction: This property is readonly.

Return Value

Double

Example

Display the number of the stock lots loaded on the basis of the selected filter and some information about them, including the quantity.

Dim aFilter
Dim aStockLots
Dim aStockLot
Dim aMessage
Dim i

Set aFilter = InventoryUtils.CreateStockLotFilter
aFilter.LocationID = 990
set aStockLots = InventoryUtils.LoadStockLots(aFilter)

aMessage = "Stock Lots Count = " & aStockLots.Count
for i = 0 to aStockLots.Count - 1
  set aStockLot = aStockLots.Item(i)
  aMessage = aMessage & vbNewLine & (i + 1) & ") " &_
  "Details: " & vbNewLine &_
  " - Batch: " & aStockLot.Batch & vbNewLine &_ 
  " - Expiry: " & aStockLot.Expiry & vbNewLine &_
  " - Note: " & aStockLot.Note & vbNewLine &_
  " - Order Number: " & aStockLot.OrderNum & vbNewLine &_
  " - Quantity: " & aStockLot.Quantity
next   

Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Quantity can be found in Control Centre > Inventory > New Stock Delivery > Quantity field.

Version information

Added in v7.8.0
return type changed from int to Double in v7.10.3