Author: jacopoc
Date: Wed Sep 16 07:56:33 2009
New Revision: 815652
URL:
http://svn.apache.org/viewvc?rev=815652&view=revLog:
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>