TPlannedTransportLine.DeliveryFormID
redirigé depuis TPlannedTransportLine.GetDeliveryFormID
| TPlannedTransportLine = class (TObject) | Interface de TPlannedTransportLine | Exemples de TPlannedTransportLine |
Qubes 6.3 Identifiant du bon de livraison ou bon de réception
Syntaxe
property DeliveryFormID: Integer read FDeliveryFormID write FDeliveryFormID
Remarques
Propriété en lecture seule. Si cette propriété est vide alors la ligne d'attendu est toujours en cour sinon elle est terminée.
Exemples
uses QubesLogistics.PlannedTransports;
var attenduLine: TPlannedTransportLine;
var i: integer;
var attendu:=TPlannedTransport.Connect('ACL', TPlannedTransportType.Purchase, '2877s555sq85', '56');
for i:=0 to attendu.Count-1 do begin
attenduLine:=attendu.PlannedTransportLines[i];
if attenduLine.DeliveryFormID<>0 then
InformationDlg('Ligne d''attendu terminée');
end;