Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Release Branch 4.0
-
None
Description
If there is only 1 ship group, there is a missing parameter named "shipGroupSeqId" in the appendorderitem.ftl form. The service this form calls, appendOrderItem, requires a shipGroupSeqId parameter.
The trunk version has it fixed by adding the following code at the top, but version 4.0 does not have a fix. The trunk version was fixed on revision 658036.
Trunk fix:
<#if shipGroups?size == 1>
<input type="hidden" name="shipGroupSeqId" value="${shipGroups.first.shipGroupSeqId}"/>
</#if>