- Timestamp:
- 2011/07/05 19:29:09 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_11-dev/data/class/helper/SC_Helper_Purchase.php
r21013 r21016 75 75 $orderId = $this->registerOrderComplete($orderTemp, $objCartSession, 76 76 $cartkey); 77 $shippingTemp =& $this->getShippingTemp(true); 77 $isMultiple = SC_Helper_Purchase::isMultiple(); 78 $shippingTemp =& $this->getShippingTemp( $isMultiple ); 78 79 foreach ($shippingTemp as $shippingId => $val) { 79 80 $this->registerShipmentItem($orderId, $shippingId, … … 352 353 * 配送先都道府県の配列を返す. 353 354 */ 354 function getShippingPref( ) {355 function getShippingPref($is_multiple) { 355 356 $results = array(); 356 foreach (SC_Helper_Purchase_Ex::getShippingTemp( true) as $val) {357 foreach (SC_Helper_Purchase_Ex::getShippingTemp($is_multiple) as $val) { 357 358 $results[] = $val['shipping_pref']; 358 359 } … … 1269 1270 */ 1270 1271 function cleanupSession($orderId, &$objCartSession, &$objCustomer, $cartKey) { 1271 // カートの内容を削除する. 1272 // カートの内容を削除する. 1272 1273 $objCartSession->delAllProducts($cartKey); 1273 1274 SC_SiteSession_Ex::unsetUniqId();
Note: See TracChangeset
for help on using the changeset viewer.
