get_product(); $product_link = $product ? admin_url( 'post.php?post=' . $item->get_product_id() . '&action=edit' ) : ''; $thumbnail = $product ? apply_filters( 'woocommerce_admin_order_item_thumbnail', $product->get_image( 'thumbnail', array( 'title' => '' ), false ), $item_id, $item ) : ''; $row_class = apply_filters( 'woocommerce_admin_html_order_item_class', ! empty( $class ) ? $class : '', $item, $order ); ?> ' . wp_kses_post( $thumbnail ) . ''; ?> ' . wp_kses_post( $item->get_name() ) . '' : '
' . wp_kses_post( $item->get_name() ) . '
'; if ( $product && $product->get_sku() ) { echo '
' . esc_html__( 'SKU:', 'woocommerce' ) . ' ' . esc_html( $product->get_sku() ) . '
'; } if ( $item->get_variation_id() ) { echo '
' . esc_html__( 'Variation ID:', 'woocommerce' ) . ' '; if ( 'product_variation' === get_post_type( $item->get_variation_id() ) ) { echo esc_html( $item->get_variation_id() ); } else { /* translators: %s: variation id */ printf( esc_html__( '%s (No longer exists)', 'woocommerce' ), esc_html( $item->get_variation_id() ) ); } echo '
'; } ?>
get_item_subtotal( $item, false, true ), array( 'currency' => $order->get_currency() ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
× ' . esc_html( $item->get_quantity() ); $refunded_qty = $order->get_qty_refunded_for_item( $item_id ); if ( $refunded_qty ) { echo '-' . esc_html( $refunded_qty * -1 ) . ''; } ?>
get_total(), array( 'currency' => $order->get_currency() ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped if ( $item->get_subtotal() !== $item->get_total() ) { /* translators: %s: discount amount */ echo '' . sprintf( esc_html__( '%s discount', 'woocommerce' ), wc_price( wc_format_decimal( $item->get_subtotal() - $item->get_total(), '' ), array( 'currency' => $order->get_currency() ) ) ) . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } $refunded = $order->get_total_refunded_for_item( $item_id ); if ( $refunded ) { echo '-' . wc_price( $refunded, array( 'currency' => $order->get_currency() ) ) . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } ?>
get_taxes() : false; if ( $tax_data ) { foreach ( $order_taxes as $tax_item ) { $tax_item_id = $tax_item->get_rate_id(); $tax_item_total = isset( $tax_data['total'][ $tax_item_id ] ) ? $tax_data['total'][ $tax_item_id ] : ''; $tax_item_subtotal = isset( $tax_data['subtotal'][ $tax_item_id ] ) ? $tax_data['subtotal'][ $tax_item_id ] : ''; if ( '' !== $tax_item_subtotal ) { $round_at_subtotal = 'yes' === get_option( 'woocommerce_tax_round_at_subtotal' ); $tax_item_total = wc_round_tax_total( $tax_item_total, $round_at_subtotal ? wc_get_rounding_precision() : null ); $tax_item_subtotal = wc_round_tax_total( $tax_item_subtotal, $round_at_subtotal ? wc_get_rounding_precision() : null ); } ?>
$order->get_currency() ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } else { echo '–'; } $refunded = $order->get_tax_refunded_for_item( $item_id, $tax_item_id ); if ( $refunded ) { echo '-' . wc_price( $refunded, array( 'currency' => $order->get_currency() ) ) . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } ?>
is_editable() ) : ?>