You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2009/09/15 08:42:51 UTC

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

Author: jleroux
Date: Tue Sep 15 06:42:50 2009
New Revision: 815165

URL: http://svn.apache.org/viewvc?rev=815165&view=rev
Log:
Fix a problem reported by Sharan Foga at "Error in Viewing Returned Items" (https://issues.apache.org/jira/browse/OFBIZ-2934) - OFBIZ-2934

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=815165&r1=815164&r2=815165&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/return/returnItems.ftl Tue Sep 15 06:42:50 2009
@@ -39,7 +39,9 @@
         <td colspan="2">&nbsp;</td>
         <td><div>
            <#if (!adjEditable)>
-               ${adjReturnType.get("description", locale)?default("${uiLabelMap.CommonNA}")}
+                <#if adjReturnType?has_content>
+                  ${adjReturnType.get("description", locale)?default("${uiLabelMap.CommonNA}")}
+                </#if>
            <#else>
                <select name="returnTypeId_o_${rowCount}">
                   <#if (adjReturnType?has_content)>
@@ -387,4 +389,4 @@
         </form>
 </#if>
     </div>
-</div>
\ No newline at end of file
+</div>