Author: ashish
Date: Sat Oct 9 18:36:28 2010
New Revision: 1006210
URL:
http://svn.apache.org/viewvc?rev=1006210&view=revLog:
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>