TStockCreations.Quantity

TStockCreationsExtended = class (TStockCreations)Interface de TStockCreationsExtendedExemples de TStockCreationsExtended

héritée de TStockCreations.Quantity

TStockCreations = class (TObject)Interface de TStockCreationsExemples de TStockCreations

Quantité produite

Syntaxe

property Quantity[index: Integer]: Float read GetQuantity
index: index de la production dans l'objet

Exemples

uses QubesStock;

// Récupération de la somme des quantités produites pour le Lot12345
var qte : Float = 0;
var prods := TStockCreations.CreateLotGPAOID('Lot12345');
for var i:=0 to prods.Count-1 do
   qte+=prods.Quantity[i];
PrintLn(qte);

Classification

QuBESStock TStockCreations