1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
<?php /** * Order details (fulfillments) * * This template can be overridden by copying it to yourtheme/woocommerce/order/order-details-fulfillments.php. * * 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. * * @see https://woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 10.1.0 * * @var bool $show_downloads Controls whether the downloads table should be rendered. */
use Automattic\WooCommerce\Internal\DataStores\Fulfillments\FulfillmentsDataStore; use Automattic\WooCommerce\Internal\Fulfillments\FulfillmentUtils;
// phpcs:disable WooCommerce.Commenting.CommentHooks.MissingHookComment
defined( 'ABSPATH' ) || exit;
$order = wc_get_order( $order_id ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
if ( ! $order ) { return; }
$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' ) ) ); $downloads = $order->get_downloadable_items(); $actions = array_filter( wc_get_account_orders_actions( $order ), function ( $key ) { return 'view' !== $key; }, ARRAY_FILTER_USE_KEY );
// We make sure the order belongs to the user. This will also be true if the user is a guest, and the order belongs to a guest (userID === 0). $show_customer_details = $order->get_user_id() === get_current_user_id();
if ( $show_downloads ) { wc_get_template( 'order/order-downloads.php', array( 'downloads' => $downloads, 'show_title' => true, ) ); } ?> <section class="woocommerce-order-details"> <?php do_action( 'woocommerce_order_details_before_order_table', $order ); ?>
<h2 class="woocommerce-order-details__title"><?php esc_html_e( 'Order details', 'woocommerce' ); ?></h2>
<table class="woocommerce-table woocommerce-table--order-details shop_table order_details"> <?php $fulfillments_data_store = wc_get_container()->get( FulfillmentsDataStore::class ); $fulfillments = $fulfillments_data_store->read_fulfillments( WC_Order::class, (string) $order->get_id() );
if ( FulfillmentUtils::has_pending_items( $order, $fulfillments ) ) { $pending_items = FulfillmentUtils::get_pending_items( $order, $fulfillments ); ?>
<thead> <tr> <th colspan="2" class="woocommerce-table__product-name product-name"><?php esc_html_e( 'Pending items', 'woocommerce' ); ?></th> </tr> </thead>
<tbody> <?php do_action( 'woocommerce_order_details_before_order_table_items', $order );
foreach ( $pending_items as $item ) { $product = $item['item']->get_product();
wc_get_template( 'order/order-details-fulfillment-item.php', array( 'order' => $order, 'item_id' => $item['item_id'], 'item' => $item['item'], 'quantity' => $item['qty'], 'is_pending_item' => true, '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 ); ?> </tbody> <?php } ?>
<?php if ( ! empty( $fulfillments ) ) { foreach ( $fulfillments as $index => $fulfillment ) { // Skip if the fulfillment is not fulfilled. if ( ! $fulfillment->get_is_fulfilled() ) { continue; } $fulfillment_items = FulfillmentUtils::get_fulfillment_items( $order, $fulfillment ); ?>
<thead> <tr> <th colspan="2" class="woocommerce-table__product-name product-name"> <?php /* translators: %s is the shipment index */ printf( esc_html__( 'Shipment %s', 'woocommerce' ), intval( $index ) + 1 ); ?> </th> </tr> </thead>
<tbody> <?php do_action( 'woocommerce_order_details_before_order_table_items', $order );
foreach ( $fulfillment_items as $item ) { $product = $item['item']->get_product();
wc_get_template( 'order/order-details-fulfillment-item.php', array( 'order' => $order, 'item_id' => $item['item_id'], 'item' => $item['item'], 'quantity' => $item['qty'], 'is_pending_item' => false, '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 ); ?> </tbody> <?php } } ?>
<?php if ( ! empty( $actions ) ) : ?> <tfoot> <tr> <th class="order-actions--heading"><?php esc_html_e( 'Actions', 'woocommerce' ); ?>:</th> <td> <?php $wp_button_class = wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : ''; foreach ( $actions as $key => $action ) { // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited if ( empty( $action['aria-label'] ) ) { // Generate the aria-label based on the action name. /* translators: %1$s Action name, %2$s Order number. */ $action_aria_label = sprintf( __( '%1$s order number %2$s', 'woocommerce' ), $action['name'], $order->get_order_number() ); } else { $action_aria_label = $action['aria-label']; } echo '<a href="' . esc_url( $action['url'] ) . '" class="woocommerce-button' . esc_attr( $wp_button_class ) . ' button ' . sanitize_html_class( $key ) . ' order-actions-button " aria-label="' . esc_attr( $action_aria_label ) . '">' . esc_html( $action['name'] ) . '</a>'; unset( $action_aria_label ); } ?> </td> </tr> </tfoot> <?php endif ?> <tfoot> <?php foreach ( $order->get_order_item_totals() as $key => $total ) { ?> <tr> <th scope="row"><?php echo esc_html( $total['label'] ); ?></th> <td><?php echo wp_kses_post( $total['value'] ); ?></td> </tr> <?php } ?> <?php if ( $order->get_customer_note() ) : ?> <tr> <th><?php esc_html_e( 'Note:', 'woocommerce' ); ?></th> <td><?php echo wp_kses( nl2br( wptexturize( $order->get_customer_note() ) ), array( 'br' => array() ) ); ?></td> </tr> <?php endif; ?> </tfoot> </table>
<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?> </section>
<?php /** * Action hook fired after the order details. * * @since 4.4.0 * @param WC_Order $order Order data. */ do_action( 'woocommerce_after_order_details', $order );
if ( $show_customer_details ) { wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) ); }
|