Support and Docs

3 Topics
Last post 11 November 2014 By Nadja Kristiansen
1 Topics
Last post 20 March 2014 By Carsten E. Madsen
0 Topics
Last post N/A By N/A
0 Topics
Last post N/A By N/A
1 Topics
Last post 02 April 2014 By Carsten E. Madsen

eSeller Data Types

OrderHead

Gives access to order data from content designs.

Attributes
NameValueDescription
IsOrderConfirmation"True" or "False"If "True", the order ID is determined from the the order confirmation page in checkout. Order data will only be accessible in a constrained time period after the order is completed. This is to prevent unauthorized access to order data. If "False" (or if the attribute is omitted), the order ID is provided using the "QuerystringKey" attribute.
IsOrderEmail"True" or "False"If "True", the order ID is determined from the e-mail sending procedure. For content designs which are used as order confirmation mail, the value of this attribute must be "True". In all other cases, the value of the attribute must be "False" or omitted.
QuerystringKeyString - e.g. "OrderID"This attribute is used IsOrderConfirmation is False. Defines the name of the key (a parameter in the URL) which passess the ID of a chosen order form the order list page to the order detail page. The default key name is "ec54" (if this attribute is omitted).
NotFoundYields403"True" or "False"If "True", the shop will yield a 403 (Forbidden) page if the order does not exist or is not available to the customer. If "False" (or omitted), an "empty" order will be displayed in these cases.
Examples
<eSeller:Data DataID="OrderData" DataTypes="OrderHead" NotFoundYields403="True" IsOrderConfirmation="False" IsOrderEmail="False" QuerystringKey="OrderID" />
<eSeller:Control ControlType="OrderDetails" ControlID="OrderDetails" DataSourceId="OrderData" />
<eSeller:Data DataID="OrderData" DataTypes="OrderHead" IsOrderConfirmation="True" IsOrderEmail="False" />
<eSeller:Select Value-Of="Data_OrderData:OrderlinesTotalpriceFormatted" />

InvoiceHead

Gives access to invoice data from content designs.

Attributes
NameValueDescription
InvIdKeyNameStringDefines the name of the key (a parameter in the URL) which passess the ID of a chosen invoice form the invoice overview page to the invoice detail page. The default key name is "inv" (if this attribute is omitted).
Examples
<eSeller:Data DataID="InvoiceData" DataType="InvoiceHead"  />
<eSeller:Control ControlType="InvoiceDetails" ControlID="InvDetails" DataSourceId="InvoiceData" />
<eSeller:Data DataID="InvoiceData" DataType="InvoiceHead" InvIdKeyName="InvoiceID" />
<eSeller:Select Value-Of="Data_InvoiceData:DueDate" />
<eSeller:Select Value-Of="Data_InvoiceData:TotalWithVAT" />

GiftCard

Gives access to gift card details from content designs.

Attributes
NameValueDescription
QuerystringKeyString - e.g. "OrderID" Defines the name of the key (a parameter in the URL) which passess the ID of a gift card order from the shop administration (VIEW LINK) or GiftCardLookUp control to the gift card details page. The default key name is "giftCardId" (if this attribute is omitted).
IsGiftCardEmailBoolean - "True" or "False" Specifies whether the content design is a gift card e-mail. Must only be true if the content design is a gift card e-mail.
Examples
<eSeller:Data DataID=”GiftCard” DataType=”GiftCard” IsGiftCardEmail=”False” QuerystringKey=”GiftCardID” />
			<eSeller:Select Value-Of="Data_GiftCard:GiftCardCode" />