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-07-19 10:30:31 +00:00
|
|
|
* @see https://docs.woocommerce.com/document/template-structure/
|
2014-11-12 16:17:53 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2017-10-24 17:34:30 +00:00
|
|
|
* @version 3.3.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
|
|
|
}
|
2017-07-11 10:10:40 +00:00
|
|
|
if ( ! $order = wc_get_order( $order_id ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2017-07-11 12:45:35 +00:00
|
|
|
$order_items = $order->get_items( apply_filters( 'woocommerce_purchase_order_item_types', 'line_item' ) );
|
|
|
|
$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();
|
|
|
|
$downloads = $order->get_downloadable_items();
|
|
|
|
$show_downloads = $order->has_downloadable_item() && $order->is_download_permitted();
|
2015-09-08 18:01:49 +00:00
|
|
|
|
2017-07-11 12:45:35 +00:00
|
|
|
if ( $show_downloads ) {
|
|
|
|
wc_get_template( 'order/order-downloads.php', array( 'downloads' => $downloads, 'show_title' => true ) );
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<section class="woocommerce-order-details">
|
2017-10-20 17:26:52 +00:00
|
|
|
<?php do_action( 'woocommerce_order_details_before_order_table', $order ); ?>
|
|
|
|
|
2016-10-12 10:16:30 +00:00
|
|
|
<h2 class="woocommerce-order-details__title"><?php _e( 'Order details', 'woocommerce' ); ?></h2>
|
2012-06-15 12:22:51 +00:00
|
|
|
|
2016-09-06 18:55:10 +00:00
|
|
|
<table class="woocommerce-table woocommerce-table--order-details shop_table order_details">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="woocommerce-table__product-name product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
|
|
|
|
<th class="woocommerce-table__product-table product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
<?php
|
2017-10-27 15:42:19 +00:00
|
|
|
do_action( 'woocommerce_order_details_before_order_table_items', $order );
|
2016-09-06 18:55:10 +00:00
|
|
|
|
2017-10-27 15:42:19 +00:00
|
|
|
foreach ( $order_items as $item_id => $item ) {
|
2018-01-31 12:54:51 +00:00
|
|
|
$product = $item->get_product();
|
2017-10-27 15:42:19 +00:00
|
|
|
|
|
|
|
wc_get_template( 'order/order-details-item.php', array(
|
|
|
|
'order' => $order,
|
|
|
|
'item_id' => $item_id,
|
|
|
|
'item' => $item,
|
|
|
|
'show_purchase_note' => $show_purchase_note,
|
|
|
|
'purchase_note' => $product ? $product->get_purchase_note() : '',
|
|
|
|
'product' => $product,
|
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
|
|
|
do_action( 'woocommerce_order_details_after_order_table_items', $order );
|
2016-09-06 18:55:10 +00:00
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
<tfoot>
|
|
|
|
<?php
|
|
|
|
foreach ( $order->get_order_item_totals() as $key => $total ) {
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo $total['label']; ?></th>
|
|
|
|
<td><?php echo $total['value']; ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2017-07-11 12:45:35 +00:00
|
|
|
<?php if ( $order->get_customer_note() ) : ?>
|
|
|
|
<tr>
|
|
|
|
<th><?php _e( 'Note:', 'woocommerce' ); ?></th>
|
|
|
|
<td><?php echo wptexturize( $order->get_customer_note() ); ?></td>
|
|
|
|
</tr>
|
|
|
|
<?php endif; ?>
|
2016-09-06 18:55:10 +00:00
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
|
|
|
|
</section>
|
2017-07-11 13:52:30 +00:00
|
|
|
|
|
|
|
<?php
|
|
|
|
if ( $show_customer_details ) {
|
|
|
|
wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) );
|
|
|
|
}
|