Author: surajk
Date: Sat Nov 24 09:07:33 2018
New Revision: 1847348
URL:
http://svn.apache.org/viewvc?rev=1847348&view=revLog:
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/trunk/ecommerce/template/order/SplitShip.ftl
Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/SplitShip.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/SplitShip.ftl?rev=1847348&r1=1847347&r2=1847348&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/SplitShip.ftl (original)
+++ ofbiz/ofbiz-plugins/trunk/ecommerce/template/order/SplitShip.ftl Sat Nov 24 09:07:33 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> ${item.getName()} - (${groupItem.getItemQuantity()})</div>
+ <div> ${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)>