svn commit: r1539156 - /ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl

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

svn commit: r1539156 - /ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl

jleroux@apache.org
Author: jleroux
Date: Tue Nov  5 22:13:05 2013
New Revision: 1539156

URL: http://svn.apache.org/r1539156
Log:
A patch from  Christian Carlow for "Ship estimate does not appear on shipping options page of purchase order finalization screen" https://issues.apache.org/jira/browse/OFBIZ-OFBIZ-5388 - OFBIZ-5388

The ship estimate field of the shipping options page of the purchase order finalization screen is not populated with the itemShipGroupEstimate value.

To reproduce:
1.  Create an purchase order to DemoSupplier for product  
GZ-1000
2.  Finalize the order and click continue until reaching the shipping options page
3.  Set the Shipping Estimate Amount and click Continue
4.  Click the "Options" link to navigate to the previous page and notice that the shipping estimate field is not set to the value submitted in the previous step

This patch sets the value of the shipping estimate field to the ship group estimate.

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl?rev=1539156&r1=1539155&r2=1539156&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/entry/optionsettings.ftl Tue Nov  5 22:13:05 2013
@@ -116,7 +116,7 @@ under the License.
                    <tr>
                      <input type='hidden' name='${shipGroupIndex?default("0")}_shipping_method' value="STANDARD@_NA_" />
                      <td>
-                       <input type='text' name='${shipGroupIndex?default("0")}_ship_estimate'/>
+                       <input type='text' name='${shipGroupIndex?default("0")}_ship_estimate' value="${cart.getItemShipGroupEstimate(shipGroupIndex?default('0'))?if_exists}"/>
                      </td>
                    </tr>
                </#if>