TPlannedTransportLine.OperationNumber
redirigé depuis TPlannedTransportLine.SetOperationNumber
| TPlannedTransportLine = class (TObject) | Interface de TPlannedTransportLine | Exemples de TPlannedTransportLine |
Qubes 6.3 Numéro d'opération associé à la ligne d'attendu
Syntaxe
property OperationNumber: Integer 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');
var attenduLine:=attendu.AddLine;
attenduLine.ItemGPAOID:='Farine55';
attenduLine.Manufacturer:='Moulin Maurice';
attenduLine.ManufacturerItemCode:='215988744';
attenduLine.ExpectedQuantity2:=5000;
attenduLine.HandlingUnit2:='pal'; // palette
attenduLine.HandlingQuantity2:=5;
attenduLine.OperationNumber:=123456;
attendu.Post;
var attendu:=TPlannedTransport.Connect('ACL', TLogisticsFlowType.Purchase, '2877s555sq85', '56');
var attenduLine:=attendu.AddLine;
attenduLine.ItemGPAOID:='Farine55';
attenduLine.Manufacturer:='Moulin Maurice';
attenduLine.ManufacturerItemCode:='215988744';
attenduLine.ExpectedQuantity2:=5000;
attenduLine.HandlingUnit2:='pal'; // palette
attenduLine.HandlingQuantity2:=5;
attenduLine.OperationNumber:=123456;
attendu.Post;