Date Submitted: |
{$item->added|date_format:'%m/%d/%Y %l:%M %p'} |
{if $item->purchaseDate}
Date Purchased: |
{$item->purchaseDate|date_format:'%m/%d/%Y %l:%M %p'} |
{/if}
{if $item->paymentType eq 'authorizeNet'}
Payment Method: | {$item->paymentTypeTitle|htmlspecialchars} |
Card Number: | {$item->paymentCardNumber|htmlspecialchars} |
Expiration Date: | {$item->paymentExpirationDate|date_format:'%m-%Y'} |
{elseif $item->paymentType eq 'payLater'}
{if 'y' != $item->paid}
{'App_ECommerce_Checkout_Abstract_View::renderPayLaterText'|call_user_func} |
{/if}
{elseif $item->paymentType && 'y' == $item->paid}
{php}
$type = $this->_tpl_vars['item']->paymentType;
$this->_tpl_vars['paymentTypeTitle'] = App_ECommerce_Order_Abstract_Obj::$paymentMethodsTitles[$type]
{/php}
Payment Method: | {$paymentTypeTitle|htmlspecialchars} |
{/if}