You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2007/07/18 11:11:40 UTC

svn commit: r557206 - /ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl

Author: jacopoc
Date: Wed Jul 18 02:11:39 2007
New Revision: 557206

URL: http://svn.apache.org/viewvc?view=rev&rev=557206
Log:
Added missing </#if> tag. Thanks to Sumit Pandit for the patch OFBIZ-1157

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl?view=diff&rev=557206&r1=557205&r2=557206
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl Wed Jul 18 02:11:39 2007
@@ -58,9 +58,10 @@
        <#else>
        <td>&nbsp;</td>
        </#if>
-       <#if (adjEditable)>
-           <#assign rowCount = rowCount + 1>
-       <#assign returnTotal = returnTotal + returnAdjustment.amount?default(0)>
+        <#if (adjEditable)>
+          <#assign rowCount = rowCount + 1>
+          <#assign returnTotal = returnTotal + returnAdjustment.amount?default(0)>
+       </#if>
     </tr>    
 </#macro>