本文整理汇总了PHP中Orders::_get_list_order方法的典型用法代码示例。如果您正苦于以下问题:PHP Orders::_get_list_order方法的具体用法?PHP Orders::_get_list_order怎么用?PHP Orders::_get_list_order使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Orders
的用法示例。
在下文中一共展示了Orders::_get_list_order方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionGet_list_basket
public function actionGet_list_basket()
{
$order_id = $_POST['order_id'];
$order = new Orders();
$data['basket'] = $order->_get_list_order($order_id);
$this->renderPartial('//backend/order/basket', $data);
}
示例2: Product
<td>#</td>
<td>รูป</td>
<td>ชื่อสินค้า</td>
<td style="text-align: center;">ราคา</td>
<td style="text-align: center;">จำนวน</td>
<td style="text-align: right;">ราคารวม</td>
</tr>
</thead>
<tbody>
<?php
$totalall = 0;
$i = 1;
$product_model = new Product();
$order = new Orders();
$transport = $order->get_price_transport($rs['order_id']);
$product = $order->_get_list_order($rs['order_id']);
foreach ($product as $products):
$img_ttitle = $product_model->get_images_product_title($products['product_id']);
if(!empty($img_ttitle)){
$img = "uploads/product_thumb/".$img_ttitle['images'];
} else {
$img = "images/No-image.jpg";
}
?>
<tr>
<td><?= $i++ ?></td>
<td style=" width: 10%;">
<img src="<?php echo Yii::app()->baseUrl; ?>/<?php echo $img; ?>" class="img-resize img-thumbnail" width="100%"/>
</td>
<td><?= $products['product_name']; ?></td>
<td style=" text-align: right;"><?= number_format($products['product_price']); ?></td>