TPlannedTransportLine.ExpectedQuantity
redirigé depuis TPlannedTransportLine.GetExpectedQuantity
| TPlannedTransportLine = class (TObject) | Interface de TPlannedTransportLine | Exemples 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;
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;