Author: jleroux
Date: Tue Sep 15 06:42:50 2009
New Revision: 815165
URL:
http://svn.apache.org/viewvc?rev=815165&view=revLog:
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"> </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>