TLogisticsDetail.LogisticOrderNumber
| TLogisticsDetail = class (TObject) | Interface de TLogisticsDetail | Exemples de TLogisticsDetail |
Qubes 6.3 Numéro de commande
Syntaxe
property LogisticOrderNumber: String read FLogisticOrderNumber write FLogisticOrderNumber
Remarques
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;