svn commit: r613803 - in /ofbiz/trunk/applications: order/webapp/ordermgr/return/returnHeader.ftl product/webapp/catalog/store/ProductStoreTabBar.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r613803 - in /ofbiz/trunk/applications: order/webapp/ordermgr/return/returnHeader.ftl product/webapp/catalog/store/ProductStoreTabBar.ftl

bibryam
Author: bibryam
Date: Mon Jan 21 01:04:42 2008
New Revision: 613803

URL: http://svn.apache.org/viewvc?rev=613803&view=rev
Log:
Misc UI fixes.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/return/returnHeader.ftl
    ofbiz/trunk/applications/product/webapp/catalog/store/ProductStoreTabBar.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/return/returnHeader.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/return/returnHeader.ftl?rev=613803&r1=613802&r2=613803&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/return/returnHeader.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/return/returnHeader.ftl Mon Jan 21 01:04:42 2008
@@ -193,11 +193,15 @@
             <td width='74%'>
               <select name='needsInventoryReceive'>
                 <#if needsInventoryReceive?exists>
-                  <option>${needsInventoryReceive}</option>
+                  <#if "Y" == needsInventoryReceive>
+                    <option selected="selected">${uiLabelMap.CommonYes}</option>
+                  <#elseif "N" == needsInventoryReceive>
+                    <option selected="selected">${uiLabelMap.CommonNo}</option>
+                  </#if>
                   <option value="${needsInventoryReceive}">---</option>
                 </#if>
-                <option>${uiLabelMap.CommonYes}</option>
-                <option>${uiLabelMap.CommonNo}</option>
+                <option value="Y">${uiLabelMap.CommonYes}</option>
+                <option value="N">${uiLabelMap.CommonNo}</option>
               </select>
             </td>
           </tr>

Modified: ofbiz/trunk/applications/product/webapp/catalog/store/ProductStoreTabBar.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/store/ProductStoreTabBar.ftl?rev=613803&r1=613802&r2=613803&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/webapp/catalog/store/ProductStoreTabBar.ftl (original)
+++ ofbiz/trunk/applications/product/webapp/catalog/store/ProductStoreTabBar.ftl Mon Jan 21 01:04:42 2008
@@ -39,5 +39,6 @@
             <li><a href="<@ofbizUrl>EditProductStoreVendorPayments?productStoreId=${productStoreId}</@ofbizUrl>" class="${selectedClassMap.EditProductStoreVendorPayments?default(unselectedClassName)}">${uiLabelMap.ProductVendorPayments}</a></li>
             <li><a href="<@ofbizUrl>EditProductStoreVendorShipments?productStoreId=${productStoreId}</@ofbizUrl>" class="${selectedClassMap.EditProductStoreVendorShipments?default(unselectedClassName)}">${uiLabelMap.ProductVendorShipments}</a></li>
         </ul>
+      <br/>
     </div>
 </#if>