I need to link order numbers with order details, i try to match with those lines below:
but i think GetOrderProperty is not suitable here to get the order details in umbraco.. What method should I use, your fast help is very much appreciated
Looks like it started working except it is listing all the orders of the customer, not the specific id. I am working on ucommerce, your insights will be very precious
Here is my code for order history and order detail:
UCommerce Listing Order History Details
Hi All,
I need to link order numbers with order details, i try to match with those lines below:
but i think GetOrderProperty is not suitable here to get the order details in umbraco.. What method should I use, your fast help is very much appreciated
<xsl:template match="/">
<!-- start writing XSLT -->
<xsl:variable name="orderLineId" select="umbraco.library:RequestQueryString('orderLineId')"/>
<!-- <xsl:if test="$id!= ''">-->
<xsl:variable name="orders" select="CommerceLibrary:GetOrderProperty($orderLineId)"/>
Hi again!
Looks like it started working except it is listing all the orders of the customer, not the specific id. I am working on ucommerce, your insights will be very precious
Here is my code for order history and order detail:
ORDER HISTORY:
ORDER DETAIL:
Thanks a lot
You can use CommerceLibrary:GetPurchaseOrder() to load a specific order by orderNumber or orderGuid.
Hope this helps.
is working on a reply...