2012-04-09 22:57:57 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* My Orders
|
|
|
|
*
|
|
|
|
* Shows recent orders on the account page
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2014-01-04 12:45:01 +00:00
|
|
|
* @version 2.1.0
|
2012-04-09 22:57:57 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-04-23 10:35:43 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
2012-04-09 22:57:57 +00:00
|
|
|
|
2014-01-04 12:36:30 +00:00
|
|
|
$customer_orders = get_posts( apply_filters( 'woocommerce_my_account_my_orders_query', array(
|
2014-01-04 12:40:22 +00:00
|
|
|
'numberposts' => $order_count,
|
|
|
|
'meta_key' => '_customer_user',
|
|
|
|
'meta_value' => get_current_user_id(),
|
|
|
|
'post_type' => 'shop_order',
|
|
|
|
'post_status' => 'publish'
|
2014-01-04 12:36:30 +00:00
|
|
|
) ) );
|
2012-04-09 22:57:57 +00:00
|
|
|
|
2012-12-23 12:19:56 +00:00
|
|
|
if ( $customer_orders ) : ?>
|
2012-04-09 22:57:57 +00:00
|
|
|
|
2012-12-23 12:19:56 +00:00
|
|
|
<h2><?php echo apply_filters( 'woocommerce_my_account_my_orders_title', __( 'Recent Orders', 'woocommerce' ) ); ?></h2>
|
2012-12-20 16:34:39 +00:00
|
|
|
|
2012-04-09 22:57:57 +00:00
|
|
|
<table class="shop_table my_account_orders">
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-09 22:57:57 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2012-10-16 09:45:33 +00:00
|
|
|
<th class="order-number"><span class="nobr"><?php _e( 'Order', 'woocommerce' ); ?></span></th>
|
2013-02-15 09:54:06 +00:00
|
|
|
<th class="order-date"><span class="nobr"><?php _e( 'Date', 'woocommerce' ); ?></span></th>
|
|
|
|
<th class="order-status"><span class="nobr"><?php _e( 'Status', 'woocommerce' ); ?></span></th>
|
2012-10-16 09:45:33 +00:00
|
|
|
<th class="order-total"><span class="nobr"><?php _e( 'Total', 'woocommerce' ); ?></span></th>
|
2013-02-15 09:54:06 +00:00
|
|
|
<th class="order-actions"> </th>
|
2012-04-09 22:57:57 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-09 22:57:57 +00:00
|
|
|
<tbody><?php
|
2012-12-23 12:19:56 +00:00
|
|
|
foreach ( $customer_orders as $customer_order ) {
|
2012-04-09 22:57:57 +00:00
|
|
|
$order = new WC_Order();
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-09 22:57:57 +00:00
|
|
|
$order->populate( $customer_order );
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2013-02-15 09:54:06 +00:00
|
|
|
$status = get_term_by( 'slug', $order->status, 'shop_order_status' );
|
|
|
|
$item_count = $order->get_item_count();
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-09 22:57:57 +00:00
|
|
|
?><tr class="order">
|
2013-02-15 09:54:06 +00:00
|
|
|
<td class="order-number">
|
2013-06-04 16:33:43 +00:00
|
|
|
<a href="<?php echo $order->get_view_order_url(); ?>">
|
2012-12-23 12:19:56 +00:00
|
|
|
<?php echo $order->get_order_number(); ?>
|
2013-02-15 09:54:06 +00:00
|
|
|
</a>
|
2012-12-23 12:19:56 +00:00
|
|
|
</td>
|
2013-02-15 09:54:06 +00:00
|
|
|
<td class="order-date">
|
2014-01-04 12:45:01 +00:00
|
|
|
<time datetime="<?php echo date( 'Y-m-d', strtotime( $order->order_date ) ); ?>" title="<?php echo esc_attr( strtotime( $order->order_date ) ); ?>"><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></time>
|
2012-04-09 22:57:57 +00:00
|
|
|
</td>
|
|
|
|
<td class="order-status" style="text-align:left; white-space:nowrap;">
|
|
|
|
<?php echo ucfirst( __( $status->name, 'woocommerce' ) ); ?>
|
|
|
|
</td>
|
2013-02-15 09:54:06 +00:00
|
|
|
<td class="order-total">
|
2013-02-15 10:06:32 +00:00
|
|
|
<?php echo sprintf( _n( '%s for %s item', '%s for %s items', $item_count, 'woocommerce' ), $order->get_formatted_order_total(), $item_count ); ?>
|
2013-02-15 09:54:06 +00:00
|
|
|
</td>
|
|
|
|
<td class="order-actions">
|
2012-12-28 20:04:14 +00:00
|
|
|
<?php
|
|
|
|
$actions = array();
|
|
|
|
|
2014-01-04 12:45:01 +00:00
|
|
|
if ( in_array( $order->status, apply_filters( 'woocommerce_valid_order_statuses_for_payment', array( 'pending', 'failed' ), $order ) ) ) {
|
2013-02-14 19:33:47 +00:00
|
|
|
$actions['pay'] = array(
|
2012-12-28 20:04:14 +00:00
|
|
|
'url' => $order->get_checkout_payment_url(),
|
|
|
|
'name' => __( 'Pay', 'woocommerce' )
|
|
|
|
);
|
2014-01-04 12:45:01 +00:00
|
|
|
}
|
2012-12-28 20:04:14 +00:00
|
|
|
|
2014-01-04 12:45:01 +00:00
|
|
|
if ( in_array( $order->status, apply_filters( 'woocommerce_valid_order_statuses_for_cancel', array( 'pending', 'failed' ), $order ) ) ) {
|
2013-02-15 09:54:06 +00:00
|
|
|
$actions['cancel'] = array(
|
2013-12-30 14:09:46 +00:00
|
|
|
'url' => $order->get_cancel_order_url( get_permalink( wc_get_page_id( 'myaccount' ) ) ),
|
2013-02-15 09:54:06 +00:00
|
|
|
'name' => __( 'Cancel', 'woocommerce' )
|
|
|
|
);
|
2014-01-04 12:45:01 +00:00
|
|
|
}
|
2013-02-15 09:54:06 +00:00
|
|
|
|
2013-02-14 19:33:47 +00:00
|
|
|
$actions['view'] = array(
|
2013-06-04 16:33:43 +00:00
|
|
|
'url' => $order->get_view_order_url(),
|
2012-12-28 20:04:14 +00:00
|
|
|
'name' => __( 'View', 'woocommerce' )
|
|
|
|
);
|
|
|
|
|
|
|
|
$actions = apply_filters( 'woocommerce_my_account_my_orders_actions', $actions, $order );
|
|
|
|
|
2014-01-09 10:13:57 +00:00
|
|
|
if ($actions) {
|
|
|
|
foreach ( $actions as $key => $action ) {
|
|
|
|
echo '<a href="' . esc_url( $action['url'] ) . '" class="button ' . sanitize_html_class( $key ) . '">' . esc_html( $action['name'] ) . '</a>';
|
|
|
|
}
|
2012-12-28 20:04:14 +00:00
|
|
|
}
|
|
|
|
?>
|
2012-04-09 22:57:57 +00:00
|
|
|
</td>
|
|
|
|
</tr><?php
|
2012-12-23 12:19:56 +00:00
|
|
|
}
|
2012-04-09 22:57:57 +00:00
|
|
|
?></tbody>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-04-09 22:57:57 +00:00
|
|
|
</table>
|
2012-12-23 12:19:56 +00:00
|
|
|
|
2013-04-06 02:56:36 +00:00
|
|
|
<?php endif; ?>
|