Author: jleroux
Date: Wed Oct  4 10:00:26 2017
New Revision: 1811061

URL: http://svn.apache.org/viewvc?rev=1811061&view=rev
Log:
Fixed: FTL Error in OrderView screen
(OFBIZ-9803)

Steps to regenerate:
1. Open OrderView screen.
2. Click on Edit Items under Actions section.
3. Now you can see the new section "Add To Order" where FTL error is generating.

jleroux: I have no ideas why this happens now. It's not happening in R16 which
si good and reassuring. So it's only a recently introduced regression. I hope
there are no others impacts...


Thanks: Renuka Srishti

Modified:
    
ofbiz/ofbiz-framework/trunk/applications/order/template/order/AppendOrderItem.ftl

Modified: 
ofbiz/ofbiz-framework/trunk/applications/order/template/order/AppendOrderItem.ftl
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/order/template/order/AppendOrderItem.ftl?rev=1811061&r1=1811060&r2=1811061&view=diff
==============================================================================
--- 
ofbiz/ofbiz-framework/trunk/applications/order/template/order/AppendOrderItem.ftl
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/order/template/order/AppendOrderItem.ftl
 Wed Oct  4 10:00:26 2017
@@ -41,7 +41,7 @@ under the License.
                 <input type="hidden" name="prodCatalogId" 
value="${catalogCol.first}"/>
             </#if>
             <#if shipGroups?size == 1>
-                <input type="hidden" name="shipGroupSeqId" 
value="${shipGroups.first.shipGroupSeqId}"/>
+                <input type="hidden" name="shipGroupSeqId" 
value="${shipGroups?first.shipGroupSeqId}"/>
             </#if>
             <table class="basic-table" cellspacing="0">
               <#if catalogCol?has_content && (catalogCol?size > 1)>


Reply via email to