TLogisticsDetail.LogisticOrderNumber

redirigé depuis TLogisticsDetail.GetLogisticOrderNumber



TLogisticsDetail = class (TObject)Interface de TLogisticsDetailExemples de TLogisticsDetail

Qubes 6.3 Numéro de commande

Syntaxe

property LogisticOrderNumber: String read FLogisticOrderNumber write FLogisticOrderNumber

Remarques

Non renseigné

Exemples


uses QubesLogistics;
uses QubesLogistics.ReceiptAndDelivery;

var logisticsDetail: TLogisticsDetail;
var logistics: TLogisticsNote;
var logisticsContainer: TLogisticsContainer;
var i, j: integer;

logistics:=TLogisticsNote.ConnectByDeliveryCodeAndShippingDateMinAndMax('france');
for i:=0 to logistics.Count-1 do begin
   logisticsContainer:=logistics.LogisticsContainer[i];
   for j:=0 to logisticsContainer.Count-1 do begin
      logisticsDetail:=logisticsContainer.Detail[j];
      InformationDlg(logisticsDetail.LogisticOrderNumber);
   end;
end;

Classification

QubesLogistics.ReceiptAndDelivery TLogisticsDetail