You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2009/11/14 23:19:26 UTC

svn commit: r836273 - /ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl

Author: lektran
Date: Sat Nov 14 22:19:25 2009
New Revision: 836273

URL: http://svn.apache.org/viewvc?rev=836273&view=rev
Log:
Wrong parameter names were being submitted when clicking on "New Shipment For Ship Group" from the order view resulting in a completely empty shipment being created

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl?rev=836273&r1=836272&r2=836273&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/order/ordershippinginfo.ftl Sat Nov 14 22:19:25 2009
@@ -588,8 +588,8 @@
                  <br/>
                  <a href="javascript:document.createShipment.submit()" class="buttontext">${uiLabelMap.OrderNewShipmentForShipGroup}</a>
                  <form name="createShipment" method="post" action="/facility/control/createShipment">
-                   <input type="hidden" name="orderId" value="${orderId}"/>
-                   <input type="hidden" name="shipGroupSeqId" value="${shipGroup.shipGroupSeqId}"/>
+                   <input type="hidden" name="primaryOrderId" value="${orderId}"/>
+                   <input type="hidden" name="primaryShipGroupSeqId" value="${shipGroup.shipGroupSeqId}"/>
                    <input type="hidden" name="statusId" value="SHIPMENT_INPUT">
                    <input type="hidden" name="facilityId" value=${storeFacilityId?if_exists}>
                  </form>