Hi I am after a similar thing having a different receipt for different locals I understand the translation is done via the local strings but how about if i would like to have a different layout per local.. Can this be done?
example . being our home currency is GBP and our secondary is AUD I would like the AUD receipts to show the exchange rate to the bottom explaining the exchange rate that was used.
I have this code which works fine but displays on both the GBP (which would not make sense to have) and the AUD which is appropriate.
Code:
<header>
<name>
<xsl:value-of select="'Exchange: '" disable-output-escaping="yes" />
</name>
<value>
<xsl:value-of select="receipt:FormatCurrencyWithoutCurrencyCode(1.00)" disable-output-escaping="yes" /><xsl:value-of select="' Pound Sterling'" disable-output-escaping="yes" /> = <xsl:value-of select="receipt:FormatCurrencyWithoutCurrencyCode(1.00,'AUD')" disable-output-escaping="yes" /><xsl:value-of select="' Australian Dollars'" disable-output-escaping="yes" />
</value>
</header>
any ideas ..
Thank you as always ..