Hi, I have a situation
I have modified my notification.receipt.xml.config
Code:
<xsl:if test="/root/Order/OrderInfo/IsPrinted = 1">
<img src="../images/logo_Duplicate.png" />
</xsl:if>
<xsl:if test="/root/Order/OrderInfo/IsPrinted = 0">
<img src="../images/logo_receipt.png" />
</xsl:if>
to show a different logo saying it is already printed.
Some time, this is not efficient. i have to manually click on "Regenerate Receipt" Button
is there any way that i do not need to click on the Regenerate Receipt" Button
every time I print a Receipt it should automatically show me the different logo that i specified in XML.
thanks