Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: receipt for different locale

  1. #11
    Join Date
    Jan 2009
    Posts
    32

    Default

    Thank you Mike for the suggestion.

    Is there any 3rd party software that can help us with this WSI tool? the thing is i'm not familiar with web service or XML therefore if there is a software out there that can work with it will be great, tx.

    edwin

  2. #12

    Default

    I'm not aware of any 3rd party tools available, but you could contact our DevNet Partners to help you and they can custom develop an app to make WSI import easier! They love this kind of thing!

  3. #13
    Join Date
    Sep 2005
    Posts
    213

    Default

    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 ..
    Gordon

    8.1.1

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •