Changes for page GetTracking (OLD)
Last modified by Outhman Moustaghfir on 2024/02/26 17:12
<
>
edited by Outhman Moustaghfir
on 2022/09/13 17:35
on 2022/09/13 17:35
edited by Outhman Moustaghfir
on 2023/03/02 16:54
on 2023/03/02 16:54
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 -GetTracking 1 +GetTracking (OLD) - Content
-
... ... @@ -26,11 +26,25 @@ 26 26 Searching by trkIDs : 27 27 28 28 {{code language="XML"}} 29 -<xsl:value-of select="ixf:GetTracking('Product', 'trkID' , '632061bef8aef457701a28d2 632061e5f8aef457701a28d3 63206213f8aef457701a28d4')"/> 29 +<xsl:value-of select="ixf:GetTracking('Product', 'trkID' , '632061bef8aef457701a28d2 632061e5f8aef457701a28d3 63206213f8aef457701a28d4')"></xsl:value-of> 30 30 {{/code}} 31 31 32 - Retrieve32 +Set the limit value to get only 4 elements : 33 33 34 +{{code language="XML"}} 35 +<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered' , 4)"></xsl:value-of> 36 +{{/code}} 34 34 38 +Add an order by Country : 35 35 40 +{{code language="XML"}} 41 +<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered' , 4, 'Country')"></xsl:value-of> 42 +{{/code}} 43 + 44 +if you want to add an order without filling the limit, you must put 0 as a value to it : 45 + 46 +{{code language="XML"}} 47 +<xsl:value-of select="ixf:GetTracking('Product', 'Name;Brand;_statusTracking' , 'Laptop;Dell;Delivered' , 0, 'Country')"></xsl:value-of> 48 +{{/code}} 49 + 36 36