now I've try to send sku no in CustomFieldList tag but now i'm getting sku no at the bottom of the receipt in Comment & Other Info section...? is there any way to get sku no. in the receipt table as column with the help of some custom field or any thing else... how to pass SKU as a custom question / answer pair in the receipt. because there is no question/answer tag according to my research in PaaS if i'm wrong then tell me how to do the same.. here is the code and receipt that i've used to get SKU in receipt and what i got...
<OrderItemList>
<OrderItem>
<ItemID>1</ItemID>
<ItemName>AML</ItemName>
<Quantity>1</Quantity>
<UnitPrice>1</UnitPrice>
<SKU>sku--1</SKU>
<CustomFieldList>
<CustomField>
<FieldName>SKU for AML</FieldName>
<FieldValue>sku--1</FieldValue>
</CustomField>
</CustomFieldList>
</OrderItem>
<OrderItem>
<ItemID>2</ItemID>
<ItemName>ALL</ItemName>
<Quantity>1</Quantity>
<UnitPrice>1</UnitPrice>
<SKU>sku--2</SKU>
<CustomFieldList>
<CustomField>
<FieldName>SKU for ALL</FieldName>
<FieldValue>sku--2</FieldValue>
</CustomField>
</CustomFieldList>
</OrderItem>
</OrderItemList>
<Receipt>
<SendReceipt>true</SendReceipt>
<EmailNotificationList>
<NotificationEmail>[email protected]</NotificationEmail>
<NotificationEmail>[email protected]</NotificationEmail>
</EmailNotificationList>
</Receipt>
***Test Mode Transaction***
Details
Price | Quantity | Total | ||
AML | $ 0.01 | 1 | $ 0.01 | |
ALL | $ 0.01 | 1 | $ 0.01 | |
Subtotal | $ 0.02 |
Total | $ 0.02 | |||
Total Charge | $ 0.02 |
***Test Mode Transaction***
Comments & Other Info:
SKU for AML = sku--1
SKU for ALL = sku--2
Leave a comment: