Hi can anybody help out and find away how i can display the exchange rate for my sub currency.
thanks
Hi can anybody help out and find away how i can display the exchange rate for my sub currency.
thanks
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
It changes so much that we just add a link to http://www.xe.com/ucc/
They do a converter that you can add to your page http://www.xe.com/ucc/customize.php
Thanks for this ..nice idea, but i just want to show my clients the rate we are converting at .. so basically the figure i have in the admin - currency page ..
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
You could either query it directly from Currency table and output it to the page, or write a small XMLPackage to do it. Either way, it should be a simple mod.
Thank you Dan ..
Hmm... write a query or XML..
I have no idea how to write that ..
anybody has the time to help me out
Thanks guys ..
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Anybody would like to help me out on this ..
I want to add the exchange rate and the converted total price..
So my main is GBP, under the Total GBP Price i want to show the exchange rate and the AUD price ..
Thanking in advanced
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
I have been fooling around for the past 10days and cant seem to figure it out ..anybody care to guide me with this ..
Thanks guys
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
These links could be your starting point: Learning about XMLPackage
XMLPackages
Thanks for that Jao.
If i had to add the subtotal in a differant currency would i need to use the XML too?
i was plating around with
How can i use this to specify a currency. thanksHTML Code:Localization.CurrencyStringForDisplayWithoutExchangeRate(SubTotal, ThisCustomer.CurrencySetting);
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Yes, you could use that line, simply change the ThisCustomer.CurrencySetting to the desire currency you want to use. You don't need to create an XMLPackage for that kind of request.
Thanks for the advise ..
Please do not laugh at me ..
so would it be
Localization.CurrencyStringForDisplayWithoutExchan geRate(SubTotal, AUD);
Thanks
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Yes, but it should be like this:
Code:Localization.CurrencyStringForDisplayWithoutExchangeRate(SubTotal, "AUD");
HA ..
You have no idea what funny code i was coming up with..
I would have never figured that out .. thanks a million.
Kind Regards
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
It's okay, curiosity leads to a greater discovery, keep it up. You always have guys to back you up...![]()
Thanks for your kind comment.
Now am on to the next step, trying to figure out how to tell the system to hide the small code i just placed when its in AUD mode. .
i douth i can mange to figure it out but i shall try..![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
I feel i am one step closer.
This seems to work but the other way round. i need this to work when on the AUD and not on my default GBP. Any ideas ..HTML Code:if (Currency.GetDefaultCurrency() == ThisCustomer.CurrencySetting) { CartSubTotalAU.Visible = false; }
I think i need to change the GetDefaultCurrency.. but to what?
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
I got it ..
YES YESHTML Code:if (("AUD") == ThisCustomer.CurrencySetting) { CartSubTotalAU.Visible = false;![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Am so proud of my self .. sorry guys .. i had to post this..
Thank you Jao![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Hi guys am tryig to put the exchange rate on the page and most of all on the receipt.
Can anybody confirm this code for me ..
Code:<?xml version="1.0" standalone="yes"?> <!-- ###################################################################################################### --> <!-- Copyright AspDotNetStorefront.com, 1995-2009. All Rights Reserved. --> <!-- http://www.aspdotnetstorefront.com --> <!-- For details on this license please visit the product homepage at the URL above. --> <!-- THE ABOVE NOTICE MUST REMAIN INTACT. --> <!-- ###################################################################################################### --> <package displayname="Order Receipt" version="2.1" debug="false" > <query name="Currency" rowElementName="ExchangeRate"> <sql> <![CDATA[ select ExchangeRate from dbo.Currency where ExchangeRate = @ExchangeRate ]]> </sql> <queryparam paramname="@ExchangeRate" paramtype="runtime" requestparamname="ExchangeRate" defvalue="0" sqlDataType="int" validationpattern="^\d{1,9}$"/> </query> <PackageTransform> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" xmlns:receipt="urn:receipt" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="receipt" > <xsl:output method="html" omit-xml-declaration="yes" encoding="utf-8"/> <xsl:template match="/"> <name> <!--AUD ExchangeRate:--> <xsl:value-of select="aspdnsf:StringResource('notification.betareceipt.xml.config.17')" disable-output-escaping="yes" /> </name> <td class="tdOrderHeaderValue"> <span id="lblOrderNumber"> <xsl:value-of select="@OrderInfo/ExchangeRate" /> </span> </td> </xsl:template> </xsl:stylesheet> </PackageTransform> </package>
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
I know the classes and notification.betareceipt.xml.config.17 are not correct, these i will change once i figure out how to display the dam exchange rate .. i have been 4 days non stop to do this .. and it does not work ..![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
The first thing to do here is to set the debug property of the package tag to true and see if the XML was able to pull out the information.
ok thanks .. but how about the code am i on the write track.. as i have no idea what certain things mean. am just copying and pasting trying all sorts and nothing is displaying..
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
ow wow .. this debug property of the package tag to true has loaded loads of info .. lets see if i can understand it ..![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
If the <ExchangeRate> tag is available and it contains an information, it means that the query has successfully pull out the necessary information and is ready to be displayed once called.
in the currency.xml.config_store.runtime.xml
i have no <ExchangeRate> tag showing![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
ok i think i have the <query name=" " rowElementName=" ">
Wrong what should these be?
Whats is rowElementName ?
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Okay, first, could you tell me what XML package you're trying to modify here? So that I could work on it.
Thanks Joe,
The XML am working on is a new one, its based from a lot of copy and past from the receipt XML file, i pasted the code on page 2 of this tread.
Is that ok .. would you like me to email you the file..
Thanks for your patience![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Well, you could try this one, under the notification.receipt.xml.config:
Note: Highlighted parts are the ones added. See if that works for you.Code:<!-- Price Column --> <td id="colPrice" width="10%"> CURRENT RATE: <xsl:value-of select="receipt:FormatCurrencyWithoutCurrencyCode(DisplayPrice)" disable-output-escaping="yes" /> EXCHANGE RATE: <xsl:value-of select="receipt:FormatCurrencyWithoutCurrencyCode(DisplayPrice, 'AUD')" disable-output-escaping="yes" />
Thanks Jeo
Just to make sure would this be garbing and displaying the exchange rate i have in the Admin.. as this is what am after.. thanks
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Yes, it should be as long as the TargetCurrency, which is the second parameter matches that of the other pages accordingly.
THANKS JEO
This actually made some thing very nice and use full .. Please see attached..
But what am actually after is the actual exchange rate that i input in the currency page . Example
1.00 Pound Sterling (GBP) = 1.71 Australian Dollar (AUD)
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0
Well, here's a simple modification on the notification.receipt.xml.config. You can add these lines of code in the template: GetAvailableHeaders, let's say, we put it at the bottom part:
Note: The highlighted parts are the added lines.Code:<xsl:if test="$isVatEnabled = true() and $OrderInfo/VATRegistrationID != ''"> <header> <name> <!--Vat Registration ID:--> <xsl:value-of select="aspdnsf:StringResource('notification.betareceipt.xml.config.26')" disable-output-escaping="yes" /> </name> <value> <xsl:value-of select="$OrderInfo/VATRegistrationID" disable-output-escaping="yes" /> </value> </header> </xsl:if> <header> <name> <!--Current Rate:--> <xsl:value-of select="'Current Rate:'" disable-output-escaping="yes" /> </name> <value> <xsl:value-of select="/root/System/PrimaryCurrency" /> : <xsl:value-of select="receipt:FormatCurrencyWithoutCurrencyCode(1.00)" disable-output-escaping="yes" /> </value> </header> <header> <name> <!--Exchange Rate:--> <xsl:value-of select="'Exchange Rate:'" disable-output-escaping="yes" /> </name> <value> <xsl:value-of select="'AUD'" /> : <xsl:value-of select="receipt:FormatCurrencyWithoutCurrencyCode(1.00,'AUD')" disable-output-escaping="yes" /> </value> </header>
OMG..![]()
JOE.. THANK YOU THANK YOU..
Dam this is perfect ..
For all does fooling around with other Storefronts well you are losing out so much. Aspdotnetstorefront and the people involved makes this system so powerful and worth every penny..
THANKS JOE..![]()
Version (Code/DB):
AspDotNetStorefront ML 8.1.2.0/8.1.2.0