2011-12-09 21:47:12 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* Order details
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/order/order-details.php.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-02-12 11:28:41 +00:00
|
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
|
|
|
* (the theme developer) will need to copy the new files to your theme to
|
|
|
|
* maintain compatibility. We try to do this as little as possible, but it does
|
|
|
|
* happen. When this occurs the version of the template file will be bumped and
|
|
|
|
* the readme will list any important changes.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-02-12 11:28:41 +00:00
|
|
|
* @see http://docs.woothemes.com/document/template-structure/
|
2014-11-12 16:17:53 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2016-04-19 10:10:18 +00:00
|
|
|
* @version 2.6.0
|
2011-12-09 21:47:12 +00:00
|
|
|
*/
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2014-09-22 16:31:03 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2015-05-01 11:42:29 +00:00
|
|
|
exit;
|
2014-09-22 16:31:03 +00:00
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2014-08-15 12:29:21 +00:00
|
|
|
$order = wc_get_order( $order_id );
|
2015-09-08 18:01:49 +00:00
|
|
|
|
2016-02-29 12:43:19 +00:00
|
|
|
$show_purchase_note = $order->has_status( apply_filters( 'woocommerce_purchase_note_order_statuses', array( 'completed', 'processing' ) ) );
|
|
|
|
$show_customer_details = is_user_logged_in() && $order->get_user_id() === get_current_user_id();
|
2011-12-09 21:47:12 +00:00
|
|
|
?>
|
2012-10-16 09:45:33 +00:00
|
|
|
<h2><?php _e( 'Order Details', 'woocommerce' ); ?></h2>
|
2012-02-10 05:51:31 +00:00
|
|
|
<table class="shop_table order_details">
|
2011-12-09 21:47:12 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2012-10-16 09:45:33 +00:00
|
|
|
<th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
|
2012-12-19 18:43:29 +00:00
|
|
|
<th class="product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
|
2011-12-09 21:47:12 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
2014-09-18 16:10:56 +00:00
|
|
|
foreach( $order->get_items() as $item_id => $item ) {
|
2015-09-08 18:01:49 +00:00
|
|
|
$product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item );
|
|
|
|
|
2015-05-01 11:42:29 +00:00
|
|
|
wc_get_template( 'order/order-details-item.php', array(
|
2016-04-19 10:10:18 +00:00
|
|
|
'order' => $order,
|
|
|
|
'item_id' => $item_id,
|
|
|
|
'item' => $item,
|
|
|
|
'show_purchase_note' => $show_purchase_note,
|
|
|
|
'purchase_note' => $product ? get_post_meta( $product->id, '_purchase_note', true ) : '',
|
|
|
|
'product' => $product,
|
2015-05-01 11:42:29 +00:00
|
|
|
) );
|
2013-03-10 16:24:04 +00:00
|
|
|
}
|
2011-12-09 21:47:12 +00:00
|
|
|
?>
|
2015-05-01 11:42:29 +00:00
|
|
|
<?php do_action( 'woocommerce_order_items_table', $order ); ?>
|
2011-12-09 21:47:12 +00:00
|
|
|
</tbody>
|
2014-07-11 01:50:51 +00:00
|
|
|
<tfoot>
|
2015-05-01 13:50:18 +00:00
|
|
|
<?php
|
|
|
|
foreach ( $order->get_order_item_totals() as $key => $total ) {
|
2015-01-29 20:50:08 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo $total['label']; ?></th>
|
2015-05-01 13:50:18 +00:00
|
|
|
<td><?php echo $total['value']; ?></td>
|
2015-01-29 20:50:08 +00:00
|
|
|
</tr>
|
|
|
|
<?php
|
2015-01-18 03:13:24 +00:00
|
|
|
}
|
2015-05-01 13:50:18 +00:00
|
|
|
?>
|
2014-07-11 01:50:51 +00:00
|
|
|
</tfoot>
|
2011-12-09 21:47:12 +00:00
|
|
|
</table>
|
|
|
|
|
2012-06-15 12:22:51 +00:00
|
|
|
<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
|
|
|
|
|
2016-02-29 12:43:19 +00:00
|
|
|
<?php if ( $show_customer_details ) : ?>
|
|
|
|
<?php wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) ); ?>
|
|
|
|
<?php endif; ?>
|