TPlannedTransportLine.HandlingQuantity
| TPlannedTransportLine = class (TObject) | Interface de TPlannedTransportLine | Exemples de TPlannedTransportLine |
Qubes 6.3 Quantité de manutention à emballer
Syntaxe
property HandlingQuantity: Float read write
Remarques
Lecture et écriture de la propriété
L'enregistrement de la propriété est fait par l'appel de la méthode Post
Exemples
uses QubesLogistics.PlannedTransports, QubesLogistics.ReceiptAndDelivery;
var attendu:=TPlannedTransport.Connect('ACL', TLogisticsFlowType.Purchase, '2877s555sq85', '56');
for var i:=0 to attendu.LineCount-1 do begin
var attenduLine:=attendu.Lines[i];
attenduLine.ExpectedQuantity2:=5000;
attenduLine.HandlingUnit2:='pal'; // palette
attenduLine.HandlingQuantity2:=5;
end;
attendu.Post;
var attendu:=TPlannedTransport.Connect('ACL', TLogisticsFlowType.Purchase, '2877s555sq85', '56');
for var i:=0 to attendu.LineCount-1 do begin
var attenduLine:=attendu.Lines[i];
attenduLine.ExpectedQuantity2:=5000;
attenduLine.HandlingUnit2:='pal'; // palette
attenduLine.HandlingQuantity2:=5;
end;
attendu.Post;