public function actionLoad_box_cart()
 {
     $order_id = $_POST['order_id'];
     $product_model = new Product();
     $data['result'] = $product_model->_get_cart_sum($order_id);
     $data['count'] = $product_model->_get_cart_count($order_id);
     $this->renderPartial('//orders/box_cart', $data);
 }