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

svn commit: r557549 - /ofbiz/branches/release4.0/applications/order/webapp/ordermgr/return/returnItems.ftl

Author: lektran
Date: Thu Jul 19 03:07:27 2007
New Revision: 557549

URL: http://svn.apache.org/viewvc?view=rev&rev=557549
Log:
Applied partial fix from trunk for revision: 554971

Modified:
    ofbiz/branches/release4.0/applications/order/webapp/ordermgr/return/returnItems.ftl

Modified: ofbiz/branches/release4.0/applications/order/webapp/ordermgr/return/returnItems.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/release4.0/applications/order/webapp/ordermgr/return/returnItems.ftl?view=diff&rev=557549&r1=557548&r2=557549
==============================================================================
--- ofbiz/branches/release4.0/applications/order/webapp/ordermgr/return/returnItems.ftl (original)
+++ ofbiz/branches/release4.0/applications/order/webapp/ordermgr/return/returnItems.ftl Thu Jul 19 03:07:27 2007
@@ -29,10 +29,10 @@
         </div></td>
         <#if (adjEditable)>
            <td>
-              <input type="text" class="inputBox" size="8" name="amount_o_${rowCount}" value="${returnAdjustment.amount?string("##0.00")}"/>
+              <input type="text" class="inputBox" size="8" name="amount_o_${rowCount}" value="${returnAdjustment.amount?default(0)?string("##0.00")}"/>
            </td>
         <#else>
-           <td class="tabletextright"><@ofbizCurrency amount=returnAdjustment.amount isoCode=returnHeader.currencyUomId/></td>
+           <td class="tabletextright"><@ofbizCurrency amount=returnAdjustment.amount?default(0) isoCode=returnHeader.currencyUomId/></td>
         </#if>
         <td colspan="2">&nbsp;</td>
         <td><div class="tabletext">
@@ -57,7 +57,7 @@
        <td>&nbsp;</td>
        </#if>
        <#assign rowCount = rowCount + 1>
-       <#assign returnTotal = returnTotal + returnAdjustment.get("amount")>
+       <#assign returnTotal = returnTotal + returnAdjustment.amount?default(0)>
     </tr>    
 </#macro>
 
@@ -260,7 +260,7 @@
    <tr><td colspan="10"><hr class="sepbar"></td></tr>
 
 <#-- these are general return adjustments not associated with a particular item (itemSeqId = "_NA_" -->
-<#if (returnAdjustments?has_content)>                  
+<#if (returnAdjustments?has_content)>
     <#list returnAdjustments as returnAdjustment>
         <#assign adjEditable = !readOnly> <#-- they are editable if the rest of the return items are -->
         <@displayReturnAdjustment returnAdjustment=returnAdjustment adjEditable=adjEditable/>