Author: sichen
Date: Wed Aug 30 16:09:51 2006
New Revision: 438702
URL:
http://svn.apache.org/viewvc?rev=438702&view=revLog:
Fix bug where if the shipment cost is unknown the cost is displayed as -1 in order entry checkout instead of Calculated Offline
Modified:
incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl
Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl
URL:
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl?rev=438702&r1=438701&r2=438702&view=diff==============================================================================
--- incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl (original)
+++ incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl Wed Aug 30 16:09:51 2006
@@ -55,7 +55,7 @@
<#assign shippingEst = shipEstimateWrapper.getShippingEstimate(carrierShipmentMethod)?default(-1)>
<#if shippingEst?has_content>
-
- <#if (shippingEst > -1)?exists>
+ <#if (shippingEst > -1)>
<@ofbizCurrency amount=shippingEst isoCode=cart.getCurrency()/>
<#else>
Calculated Offline