Index: branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php
===================================================================
--- branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php	(revision 19926)
+++ branches/version-2_5-dev/data/class/helper/SC_Helper_Purchase.php	(revision 19927)
@@ -208,4 +208,21 @@
 
     /**
+     * 配送商品の情報でカートを更新する.
+     */
+    function shippingItemTempToCart(&$objCartSession) {
+        $shipmentItems = array();
+
+        foreach (array_keys($_SESSION['shipping']) as $otherDelivId) {
+            foreach (array_keys($_SESSION['shipping'][$otherDelivId]['shipment_item']) as $productClassId) {
+                $shipmentItems[$productClassId] += $_SESSION['shipping'][$otherDelivId]['shipment_item'][$productClassId]['quantity'];
+           }
+        }
+        foreach ($shipmentItems as $productClassId => $quantity) {
+            $objCartSession->setProductValue($productClassId, 'quantity',
+                                             $quantity,$objCartSession->getKey());
+        }
+    }
+
+    /**
      * 複数配送指定の購入かどうか.
      *
Index: branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php
===================================================================
--- branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php	(revision 19926)
+++ branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php	(revision 19927)
@@ -129,4 +129,5 @@
                     }
 
+                    $objPurchase->shippingItemTempToCart($objCartSess);
                     $objPurchase->saveOrderTemp($uniqid, $sqlval[0], $objCustomer);
                     $objSiteSess->setRegistFlag();
