svn commit: r1847349 - /ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl

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

svn commit: r1847349 - /ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl

surajk
Author: surajk
Date: Sat Nov 24 09:13:01 2018
New Revision: 1847349

URL: http://svn.apache.org/viewvc?rev=1847349&view=rev
Log:
Fixed: Error message is displayed on ecommerce when user tries to use Split shipment functionality.
> (OFBIZ-10623)
> Thanks Arpit Mor for reporting and Praveen Sharma for providing the patch.

Modified:
    ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl

Modified: ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl?rev=1847349&r1=1847348&r2=1847349&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl (original)
+++ ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/template/order/SplitShip.ftl Sat Nov 24 09:13:01 2018
@@ -65,7 +65,7 @@ function submitForm(form, mode, value) {
                     <div><b>${uiLabelMap.CommonGroup} ${groupNumber}:</b></div>
                     <#list group.getShipItems() as item>
                       <#assign groupItem = group.getShipItemInfo(item)>
-                      <div>&nbsp;&nbsp;&nbsp;${item.getName()} - (${groupItem.getItemQuantity()})</div>
+                      <div>&nbsp;&nbsp;&nbsp;${item.getName(dispatcher)} - (${groupItem.getItemQuantity()})</div>
                     </#list>
                   </td>
                   <td>
@@ -185,7 +185,7 @@ function submitForm(form, mode, value) {
                       </#if>
                       <#-- end code to display a small image of the product -->
                       <a href="<@ofbizUrl>product?product_id=${cartLine.getProductId()}</@ofbizUrl>" class="buttontext">${cartLine.getProductId()} -
-                      ${cartLine.getName(dispatcher)!}</a> : ${cartLine.getDescription()!}
+                      ${cartLine.getName(dispatcher)!}</a> : ${cartLine.getDescription(dispatcher)!}
 
                       <#-- display the registered ship groups and quantity -->
                       <#assign itemShipGroups = cart.getShipGroups(cartLine)>