TPlannedTransportLine.ExpectedQuantity

redirigé depuis TPlannedTransportLine.SetExpectedQuantity

TPlannedTransportLine = class (TObject)Interface de TPlannedTransportLineExemples de TPlannedTransportLine

Qubes 6.3 Quantité attendue

Syntaxe

property ExpectedQuantity: Float read write

Remarques

Quantité attendue de la ligne d'attendu

Exemples

uses QubesLogistics.PlannedTransports, QubesLogistics.ReceiptAndDelivery;

var attenduLine: TPlannedTransportLine;
var attendu:=TPlannedTransport.Connect('ACL', TLogisticsFlowType.Purchase, '2877s555sq85', '56');

for var i:=0 to attendu.LineCount-1 do begin
   attenduLine:=attendu.Lines[i];
   attenduLine.ExpectedQuantity:=5000;
end;
attendu.Post;

Classification

QubesLogistics.PlannedTransports TPlannedTransportLine