svn commit: r438702 - /incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r438702 - /incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl

sichen
Author: sichen
Date: Wed Aug 30 16:09:51 2006
New Revision: 438702

URL: http://svn.apache.org/viewvc?rev=438702&view=rev
Log:
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>
                           &nbsp;-&nbsp;
-                          <#if (shippingEst > -1)?exists>
+                          <#if (shippingEst > -1)>
                             <@ofbizCurrency amount=shippingEst isoCode=cart.getCurrency()/>
                           <#else>
                             Calculated Offline