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 2009/09/16 09:56:34 UTC

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

Author: jacopoc
Date: Wed Sep 16 07:56:33 2009
New Revision: 815652

URL: http://svn.apache.org/viewvc?rev=815652&view=rev
Log:
Fix for bug affecting the return total (it was not considering adjustments).

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?rev=815652&r1=815651&r2=815652&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl Wed Sep 16 07:56:33 2009
@@ -62,8 +62,8 @@
        </#if>
         <#if (adjEditable)>
           <#assign rowCount = rowCount + 1>
-          <#assign returnTotal = returnTotal + returnAdjustment.amount?default(0)>
        </#if>
+       <#assign returnTotal = returnTotal + returnAdjustment.amount?default(0)>
     </tr>
 </#macro>