Hi,
I am trying to add columns on the receipt to be able to offer sale for the customers next trip if they spend more then $50. I want to put valid dates on the receipt by adding 7 days from the transaction date. I am new with XML and need help. When I add days it prints the date value instead of the date. I tried everything I know in VB like format date adddate etc. but failed to succeed.
Thanks in advance.
Here is the code:
<IF>
<CONDITION> (Transaction.SubTotal > 49.99</CONDITION>
<THEN>
<ROW> "Take $10 OFF on your next purchase"</ROW>
<ROW>Transaction.Date + 7</ROW>
</THEN>
</IF>
I am trying to add columns on the receipt to be able to offer sale for the customers next trip if they spend more then $50. I want to put valid dates on the receipt by adding 7 days from the transaction date. I am new with XML and need help. When I add days it prints the date value instead of the date. I tried everything I know in VB like format date adddate etc. but failed to succeed.
Thanks in advance.
Here is the code:
<IF>
<CONDITION> (Transaction.SubTotal > 49.99</CONDITION>
<THEN>
<ROW> "Take $10 OFF on your next purchase"</ROW>
<ROW>Transaction.Date + 7</ROW>
</THEN>
</IF>