當前位置: 首頁>>代碼示例>>PHP>>正文


PHP OrderDetail::getList方法代碼示例

本文整理匯總了PHP中OrderDetail::getList方法的典型用法代碼示例。如果您正苦於以下問題:PHP OrderDetail::getList方法的具體用法?PHP OrderDetail::getList怎麽用?PHP OrderDetail::getList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在OrderDetail的用法示例。


在下文中一共展示了OrderDetail::getList方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getTableRecentOrders

 public function getTableRecentOrders()
 {
     $header = array(array('title' => $this->l('Customer Name'), 'class' => 'text-left'), array('title' => $this->l('Products'), 'class' => 'text-center'), array('title' => $this->l('Total'), 'class' => 'text-center'), array('title' => $this->l('Date'), 'class' => 'text-center'), array('title' => $this->l('Action'), 'class' => 'text-center'));
     $orders = Order::getOrdersWithInformations((int) Configuration::get('DASHPRODUCT_NBR_SHOW_LAST_ORDER', 10));
     $body = array();
     foreach ($orders as $order) {
         $currency = Currency::getCurrency((int) $order['id_currency']);
         $tr = array();
         $tr[] = array('id' => 'firstname_lastname', 'value' => Tools::htmlentitiesUTF8($order['firstname']) . ' ' . Tools::htmlentitiesUTF8($order['lastname']), 'class' => 'text-left');
         $tr[] = array('id' => 'state_name', 'value' => count(OrderDetail::getList((int) $order['id_order'])), 'class' => 'text-center');
         $tr[] = array('id' => 'total_paid', 'value' => Tools::displayPrice((double) $order['total_paid'], $currency), 'class' => 'text-center', 'wrapper_start' => '<span class="badge">', 'wrapper_end' => '<span>');
         $tr[] = array('id' => 'date_add', 'value' => Tools::displayDate($order['date_add']), 'class' => 'text-center');
         $tr[] = array('id' => 'details', 'value' => $this->l('Details'), 'class' => 'text-right', 'wrapper_start' => '<a class="btn btn-default" href="index.php?tab=AdminOrders&id_order=' . (int) $order['id_order'] . '&vieworder&token=' . Tools::getAdminTokenLite('AdminOrders') . '" title="' . $this->l('Details') . '"><i class="icon-search"></i>', 'wrapper_end' => '</a>');
         $body[] = $tr;
     }
     return array('header' => $header, 'body' => $body);
 }
開發者ID:dev-lav,項目名稱:htdocs,代碼行數:17,代碼來源:dashproducts.php

示例2: getOrderDetailList

 /**
  * Get the an order detail list of the current order
  * @return array
  */
 public function getOrderDetailList()
 {
     return OrderDetail::getList($this->id);
 }
開發者ID:zangles,項目名稱:lennyba,代碼行數:8,代碼來源:Order.php

示例3: getOrderReason

 public static function getOrderReason($id_order)
 {
     $reason = '';
     $order_details = OrderDetail::getList($id_order);
     foreach ($order_details as $order_detail) {
         $reason .= $order_detail['product_quantity'] . ' x ' . $order_detail['product_name'] . '; ';
     }
     return Tools::substr($reason, 0, 250);
 }
開發者ID:jBangiev,項目名稱:mediafinanz,代碼行數:9,代碼來源:mediafinanz.php


注:本文中的OrderDetail::getList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。