[OFBiz] SVN: r7830 - trunk/applications/order/webapp/ordermgr/entry/catalog

jacopo@svn.ofbiz.org jacopo at svn.ofbiz.org
Wed Jun 21 02:51:22 CDT 2006


Author: jacopo
Date: 2006-06-21 02:51:15 -0500 (Wed, 21 Jun 2006)
New Revision: 7830

Modified:
   trunk/applications/order/webapp/ordermgr/entry/catalog/quickaddsummary.ftl
Log:
Fixed NPE under some circumstances.

Modified: trunk/applications/order/webapp/ordermgr/entry/catalog/quickaddsummary.ftl
===================================================================
--- trunk/applications/order/webapp/ordermgr/entry/catalog/quickaddsummary.ftl	2006-06-20 20:51:02 UTC (rev 7829)
+++ trunk/applications/order/webapp/ordermgr/entry/catalog/quickaddsummary.ftl	2006-06-21 07:51:15 UTC (rev 7830)
@@ -43,7 +43,7 @@
     </div>
   </td>
   <td align="right" valign="middle" width="5%">
-    <div class="<#if price.isSale>salePrice<#else>normalPrice</#if>">
+    <div class="<#if price.isSale?exists && price.isSale>salePrice<#else>normalPrice</#if>">
       <b><@ofbizCurrency amount=price.price isoCode=price.currencyUsed/></b>
     </div>
   </td>                                 



More information about the Svn mailing list