Changeset 22554 for branches/version-2_12-dev/data/class/pages
- Timestamp:
- 2013/02/15 21:45:14 (13 years ago)
- Location:
- branches/version-2_12-dev/data/class/pages
- Files:
-
- 4 edited
-
admin/basis/LC_Page_Admin_Basis_DeliveryInput.php (modified) (1 diff)
-
admin/order/LC_Page_Admin_Order_Disp.php (modified) (1 diff)
-
admin/order/LC_Page_Admin_Order_Edit.php (modified) (2 diffs)
-
shopping/LC_Page_Shopping_Payment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php
r22553 r22554 216 216 217 217 // お届け時間 218 $objFormParam->setParamList($arrDeliv['deliv_time'], 'deliv_time'); 218 $deliv_times = array(); 219 foreach ($arrDeliv['deliv_time'] as $value) { 220 $deliv_times[]['deliv_time'] = $value; 221 } 222 $objFormParam->setParamList($deliv_times, 'deliv_time'); 219 223 unset($arrDeliv['deliv_time']); 220 224 // 配送料金 221 $objFormParam->setParamList($arrDeliv['fee'], 'fee'); 225 $deliv_fee = array(); 226 foreach ($arrDeliv['fee'] as $value) { 227 $deliv_fee[]['fee'] = $value; 228 } 229 $objFormParam->setParamList($deliv_fee, 'fee'); 222 230 unset($arrDeliv['fee']); 223 231 // 支払方法 -
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php
r22543 r22554 126 126 $this->arrForm = $objFormParam->getFormParamList(); 127 127 $this->arrAllShipping = $objFormParam->getSwapArray(array_merge($this->arrShippingKeys, $this->arrShipmentItemKeys)); 128 $this->arrDelivTime = $objPurchase->getDelivTime($objFormParam->getValue('deliv_id'));128 $this->arrDelivTime = SC_Helper_Delivery_Ex::getDelivTime($objFormParam->getValue('deliv_id')); 129 129 $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 130 130 -
branches/version-2_12-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
r22543 r22554 301 301 $this->arrAllShipping = $objFormParam->getSwapArray(array_merge($this->arrShippingKeys, $this->arrShipmentItemKeys)); 302 302 $this->top_shipping_id = array_shift((array_keys($this->arrAllShipping))); 303 $this->arrDelivTime = $objPurchase->getDelivTime($objFormParam->getValue('deliv_id'));303 $this->arrDelivTime = SC_Helper_Delivery_Ex::getDelivTime($objFormParam->getValue('deliv_id')); 304 304 $this->tpl_onload .= $this->getAnchorKey($objFormParam); 305 305 if ($arrValuesBefore['payment_id']) … … 770 770 $arrAllShipmentItem = $objFormParam->getSwapArray($this->arrShipmentItemKeys); 771 771 772 $arrDelivTime = $objPurchase->getDelivTime($objFormParam->getValue('deliv_id'));772 $arrDelivTime = SC_Helper_Delivery_Ex::getDelivTime($objFormParam->getValue('deliv_id')); 773 773 //商品単価を複数配送にも適応 774 774 $arrShippingValues = array(); -
branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping_Payment.php
r22553 r22554 403 403 function getSelectedDeliv(&$objPurchase, &$objCartSess, $deliv_id) { 404 404 $arrResults = array(); 405 $arrResults['arrDelivTime'] = $objPurchase->getDelivTime($deliv_id);405 $arrResults['arrDelivTime'] = SC_Helper_Delivery_Ex::getDelivTime($deliv_id); 406 406 $total = $objCartSess->getAllProductsTotal($objCartSess->getKey()); 407 407 $arrResults['arrPayment'] = $objPurchase->getPaymentsByPrice($total, $deliv_id);
Note: See TracChangeset
for help on using the changeset viewer.
