You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2010/10/09 20:36:28 UTC

svn commit: r1006210 - /ofbiz/branches/release10.04/applications/order/webapp/ordermgr/order/findOrders.ftl

Author: ashish
Date: Sat Oct  9 18:36:28 2010
New Revision: 1006210

URL: http://svn.apache.org/viewvc?rev=1006210&view=rev
Log:
By default find order search will not include ship to country selection enabled. It is working fine on trunk. 

Modified:
    ofbiz/branches/release10.04/applications/order/webapp/ordermgr/order/findOrders.ftl

Modified: ofbiz/branches/release10.04/applications/order/webapp/ordermgr/order/findOrders.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/release10.04/applications/order/webapp/ordermgr/order/findOrders.ftl?rev=1006210&r1=1006209&r2=1006210&view=diff
==============================================================================
--- ofbiz/branches/release10.04/applications/order/webapp/ordermgr/order/findOrders.ftl (original)
+++ ofbiz/branches/release10.04/applications/order/webapp/ordermgr/order/findOrders.ftl Sat Oct  9 18:36:28 2010
@@ -452,9 +452,11 @@ function toggleOrderIdList() {
                        <#assign includeCountry = requestParameters.includeCountry>
                        <option value="${includeCountry}"><#if "Y" == includeCountry>${uiLabelMap.OrderOnlyInclude}<#elseif "N" == includeCountry>${uiLabelMap.OrderDoNotInclude}</#if></option>
                        <option value="${includeCountry}">---</option>
-                    </#if>  
+                    <#else>
+                       <option value="">---</option>
+                    </#if>
+                    <option value="N">${uiLabelMap.OrderDoNotInclude}</option>  
                     <option value="Y">${uiLabelMap.OrderOnlyInclude}</option>
-                    <option value="N">${uiLabelMap.OrderDoNotInclude}</option>
                   </select>
                 </td>
               </tr>