Authored by 郝肖肖

订单确认页面 统计代码 去除

@@ -232,18 +232,9 @@ class IndexController extends WebAction @@ -232,18 +232,9 @@ class IndexController extends WebAction
232 $this->go(Helpers::url('/shopping/cart')); 232 $this->go(Helpers::url('/shopping/cart'));
233 } 233 }
234 234
235 - $productListArr = array();  
236 - foreach ($orderEnsure['orderProducts'] as $orderProducts) {  
237 - $productListArr[] = $orderProducts['id'] . ',' . $orderProducts['productNum'];  
238 - }  
239 -  
240 $this->_view->display('order-ensure', array( 235 $this->_view->display('order-ensure', array(
241 'orderEnsurePage' => true, 236 'orderEnsurePage' => true,
242 'orderEnsure' => $orderEnsure, 237 'orderEnsure' => $orderEnsure,
243 - 'pinyou' => array(  
244 - 'money' => $orderEnsure['lastOrderAmount'],  
245 - 'productList' => implode(';', $productListArr)  
246 - )  
247 )); 238 ));
248 } 239 }
249 240