- Timestamp:
- 2012/06/20 11:57:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/helper/SC_Helper_Purchase.php
r21867 r21927 122 122 } 123 123 124 $arrParams = array(); 124 125 $arrParams['status'] = $orderStatus; 125 126 if ($is_delete) { … … 271 272 // 存在するカラムのみを対象とする 272 273 $cols = $objQuery->listTableFields('dtb_order_temp'); 274 $sqlval = array(); 273 275 foreach ($params as $key => $val) { 274 276 if (in_array($key, $cols)) { … … 542 544 $objQuery->setOrder('rank DESC'); 543 545 $payments = $objQuery->select('payment_id, payment_method, rule_max, upper_rule, note, payment_image, charge', 'dtb_payment', $where, $arrPaymentIds); 546 $arrPayment = array(); 544 547 foreach ($payments as $data) { 545 548 // 下限と上限が設定されている … … 842 845 $objProduct = new SC_Product_Ex(); 843 846 $i = 0; 847 $arrDetail = array(); 844 848 foreach ($cartItems as $item) { 845 849 $p =& $item['productsClass']; … … 1068 1072 1069 1073 if ($has_items) { 1070 $objProduct = new SC_Product_Ex();1071 1074 foreach (array_keys($arrResults) as $shipping_id) { 1072 1075 $arrResults[$shipping_id]['shipment_item'] … … 1136 1139 * @return void 1137 1140 */ 1138 function sfUpdateOrderStatus($orderId, $newStatus = null, $newAddPoint = null, $newUsePoint = null, &$sqlval ) {1141 function sfUpdateOrderStatus($orderId, $newStatus = null, $newAddPoint = null, $newUsePoint = null, &$sqlval = array()) { 1139 1142 $objQuery =& SC_Query_Ex::getSingletonInstance(); 1140 1143 $arrOrderOld = $objQuery->getRow('status, add_point, use_point, customer_id', 'dtb_order', 'order_id = ?', array($orderId)); … … 1331 1334 * 加える機会を与える. 1332 1335 * 1336 * $orderId が使われていない。 1337 * 1333 1338 * @param integer $orderId 注文番号 1334 1339 * @param SC_CartSession $objCartSession カート情報のインスタンス
Note: See TracChangeset
for help on using the changeset viewer.
