...
Code Block | ||
---|---|---|
| ||
<HtmlReceiptTemplate><![CDATA[ <html> <head></head> <body> <header> <img class="center" src="https://hndpt.co/34r676D"/> {% if ($MERCHANT_NAME) %} <div id="merchant_name"> <p class="large bold center">{$MERCHANT_NAME}</p> </div> {% endif %} {% if ($MERCHANT_LOCATION) %} <div id="merchant_location"> <p class="center">{$MERCHANT_LOCATION}</p> </div> {% endif %} <div id="datetime" class="separator solid" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% if ($DATETIME) %} <div> <label class="left">{$DATETIME|date}</label> <span class="right">{$DATETIME|time}</span> </div> {% endif %} </header> <main> {% if ($RESPONSE_LABELI18N) %} <div id="response"> <p class="large bold center">{$RESPONSE_LABEL_I18N}{% if ($ERROR_MESSAGE_I18N != null && ($ERROR_MESSAGE_I18N|trim != $RESPONSE_I18N|trim)) %}: {$ERROR_MESSAGE_I18N}{% endif %}</p> </div> {% elseIf ($RESPONSE) %} <div id="response"> <p class="large bold center">{$RESPONSE}{% if ($ERROR_MESSAGE != null && $ERROR_MESSAGE|trim != $RESPONSE|trim) %}: {$ERROR_MESSAGE}{% endif %}</p> </div> {% endif %} {% if ($TXN_TYPE) %} <div id="txn_type"> <p class="large bold center">{$TXN_TYPE_LABELI18N}</p> </div> {% endif %} {% if ($AMOUNT) %} <div id="amount"> <p class="xlarge bold center">{$AMOUNT|currency($CURRENCY)}</p> </div> {% endif %} <div class="separator dotted" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% if ($MID) %} <div id="mid"> <label class="left bold">{$MID_LABELI18N}</label> <span class="right">{$MID}</span> </div> {% endif %} {% if ($TID) %} <div id="tid"> <label class="left bold">{$TID_LABELI18N}</label> <span class="right">{$TID}</span> </div> {% endif %} {% if ($CARD_NUMBER) %} <div id="card_number"> <label class="left bold">{$APP_LABEL}</label> <span class="right">{$CARD_NUMBER}</span> </div> {% endif %} {% if ($ENTRY) %} <div id="entry"> <label class="left bold">{$ENTRY_LABELI18N}</label> <span class="right">{$ENTRY}</span> </div> {% endif %} {% if ($CVM != null) && ($TXN_TYPE != "SALE VOID") %} <div id="cvm"> <label class="left bold">{$CVM_LABELI18N}</label> <span class="right">{$CVM}</span> </div> {% endif %} {% if ($AUTH_CODE) %} <div id="auth_code"> <label class="left bold">{$AUTH_CODE_LABELI18N}</label> <span class="right">{$AUTH_CODE}</span> </div> {% endif %} <div class="separator dotted" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% if ($REFERENCE) %} <div> <p class="left bold">GUID</p> </div> <div id="guid"> <p class="small left">{$REFERENCE}</p> </div> {% endif %} <div class="separator dotted" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% if ($RECEIPT_TYPE_DESCRIPTION) %} <div id="receipt_type_description"> <p class="center">{$RECEIPT_TYPE_DESCRIPTION}</p> </div> {% endif %} <div class="separator solid" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% if ($SWIPE != 1) %} {% if ($TVR != null || $AID != null || $IAD != null || $TSI != null || $ARC != null) %} <div> <p class="center bold">{$EMV_DETAILS_LABELI18N}</p> </div> {% endif %} {% if ($AID) %} <div id="aid"> <label class="small left bold">{$AID_LABELI18N}</label> <span class="left">{$AID}</span> </div> {% endif %} {% if ($TVR) %} <div id="tvr"> <label class="small left bold">{$TVR_LABELI18N}</label> <span class="left">{$TVR}</span> </div> {% endif %} {% if ($IAD) %} <div id="iad"> <label class="small left bold">{$IAD_LABELI18N}</label> <span class="left">{$IAD}</span> </div> {% endif %} {% if ($TSI) %} <div id="tsi"> <label class="small left bold">{$TSI_LABELI18N}</label> <span class="left">{$TSI}</span> </div> {% endif %} {% if ($ARC) %} <div id="arc"> <label class="small left bold">{$ARC_LABELI18N}</label> <span class="left">{$ARC}</span> </div> {% endif %} {% if ($TVR != null || $AID != null || $IAD != null || $TSI != null || $ARC != null) %} <div class="separator solid" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% endif %} {% endif %} </main> <footer> {% if ($SUCCESS_RESPONSE != 1 && $RESPONSE != $ERROR_MESSAGE) %} <div id="error_message"> <p class="large center">{$ERROR_MESSAGE}</p> </div> <div class="separator solid" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% endif %} <div class="separator" style="margin-top: 20px; margin-bottom: 20px;"></div> {% if ($SIGNATURE ) %} <div id="signature"> <img class="center" src="{$SIGNATURE}"/> </div> <div class="separator solid" style="margin-top: 10px; height: 2px; margin-bottom: 10px;"></div> {% endif %} </footer> </body> </html> ]]> </HtmlReceiptTemplate> |
...