You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2007/12/12 15:29:41 UTC

svn commit: r603627 - /ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml

Author: jacopoc
Date: Wed Dec 12 06:29:38 2007
New Revision: 603627

URL: http://svn.apache.org/viewvc?rev=603627&view=rev
Log:
Set operations required after recent changes.

Modified:
    ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml?rev=603627&r1=603626&r2=603627&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml Wed Dec 12 06:29:38 2007
@@ -132,6 +132,7 @@
             <if-compare value="SERIALIZED_INV_ITEM" operator="not-equals" field-name="parameters.inventoryItemTypeId">
                 <clear-field field-name="serviceInMap"/>
                 <set-service-fields service-name="createInventoryItemDetail" map-name="parameters" to-map-name="serviceInMap"/>
+                <set field="serviceInMap.inventoryItemId" from-field="currentInventoryItemId"/>
                 <call-service service-name="createInventoryItemDetail" in-map-name="serviceInMap">
                     <result-to-field result-name="inventoryItemDetailSeqId" field-name="parameters.inventoryItemDetailSeqId"/>
                 </call-service>
@@ -139,6 +140,7 @@
             
             <clear-field field-name="serviceInMap"/>
             <set-service-fields service-name="createShipmentReceipt" map-name="parameters" to-map-name="serviceInMap"/>
+            <set field="serviceInMap.inventoryItemId" from-field="currentInventoryItemId"/>
             <call-service service-name="createShipmentReceipt" in-map-name="serviceInMap"/>
             
             <!-- update serialized items to AVAILABLE (only if this is not a return), which then triggers other SECA chains -->
@@ -173,6 +175,7 @@
             
             <clear-field field-name="serviceInMap"/>
             <set-service-fields service-name="balanceInventoryItems" map-name="parameters" to-map-name="serviceInMap"/>
+            <set field="serviceInMap.inventoryItemId" from-field="currentInventoryItemId"/>
             <call-service service-name="balanceInventoryItems" in-map-name="serviceInMap"/>
 
             <set field="successMessageList[]" value="Received ${parameters.quantityAccepted} of ${parameters.productId} in inventory item ${currentInventoryItemId}"/>