Author: jleroux
Date: Sun Sep 27 16:39:39 2009
New Revision: 819337
URL:
http://svn.apache.org/viewvc?rev=819337&view=revLog:
A patch from Simon Hutchinson "Shipping Options are not showing correct currency symbol." (
https://issues.apache.org/jira/browse/OFBIZ-2971) - OFBIZ-2971
During "Step 3: Shipping Options" of the one page checkout the available options are displayed as options in a select box.
The description of the option includes a currency symbol. - However this symbol is always a $.
Modified:
ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml
Modified: ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml?rev=819337&r1=819336&r2=819337&view=diff==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/CustomerEvents.xml Sun Sep 27 16:39:39 2009
@@ -1085,9 +1085,9 @@
<set field="shippingMethod" value="${carrierShipmentMethod.shipmentMethodTypeId}@${carrierShipmentMethod.partyId}"/>
<if-compare-field field="shippingEst" operator="greater" to-field="negValue">
- <set field="shippingDesc" value="${carrierShipmentMethod.partyId} ${carrierShipmentMethod.description} - $${shippingEst}"/>
+ <set field="shippingDesc" value="${carrierShipmentMethod.partyId} ${carrierShipmentMethod.description} - ${shippingEst?currency(${currency})}"/>
<else>
- <set field="shippingDesc" value="${carrierShipmentMethod.partyId} ${carrierShipmentMethod.description} - $${uiLabelMap.OrderCalculatedOffline}"/>
+ <set field="shippingDesc" value="${carrierShipmentMethod.partyId} ${carrierShipmentMethod.description} - ${uiLabelMap.OrderCalculatedOffline}"/>
</else>
</if-compare-field>
<set field="shippingOptionMap.shippingMethod" from-field="shippingMethod"/>