\!/ KyuuKazami \!/

Path : /home/kohli/public_html/application/views/admin/reports/
Upload :
Current File : /home/kohli/public_html/application/views/admin/reports/_order_row.php

<tr>
    <th><input type="checkbox" /></th>
    <td><a  class="order_num" href="<?php echo site_url("admin/reports/order_detail/".$order_row->order_id) ?>"><?php echo $order_row->order_id ?></a></td>
    <td><?php echo $this->common_lib->date_display_format($order_row->order_date,false) ?></td>
    <td><?php echo $order_row->username ?></td>
    <td><?php echo $this->common_lib->currency_price($order_row->sub_total) ?></td>
    <td><?php echo $this->common_lib->currency_price($order_row->shipping) ?></td>
    <td><?php echo $this->common_lib->currency_price($order_row->promo_discount) ?></td>
    <td><?php echo $this->common_lib->currency_price($order_row->order_amount) ?></td>
    <td><?php echo $this->common_lib->currency_price($order_row->amount_remaining) ?></td>
    
    <td><?php echo $this->common_lib->render_dropdown($order_status_list,"status_code","status_detail","order_status",$order_row->order_status); ?></td>
    <td><?php echo $this->common_lib->render_dropdown($payment_gateways_list,"gateway_code","gateway_detail","payment_gateways",$order_row->payment_method); ?></td>
    <td><?php echo $this->common_lib->render_dropdown($payment_status_list,"payment_status_code","payment_status_detail","payment_status",$order_row->payment_status); ?></td>
</tr>

@KyuuKazami