<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $wpdb; // Get the payment gateway $payment_gateway = wc_get_payment_gateway_by_order( $order ); // Get line items $line_items = $order->get_items( apply_filters( 'woocommerce_admin_order_item_types', 'line_item' ) ); $line_items_fee = $order->get_items( 'fee' ); $line_items_shipping = $order->get_items( 'shipping' ); if ( wc_tax_enabled() ) { $order_taxes = $order->get_taxes(); $tax_classes = WC_Tax::get_tax_classes(); $classes_options = wc_get_product_tax_class_options(); $show_tax_columns = sizeof( $order_taxes ) === 1; } ?> <div class="woocommerce_order_items_wrapper wc-order-items-editable"> <table cellpadding="0" cellspacing="0" class="woocommerce_order_items"> <thead> <tr> <th class="item sortable" colspan="2" data-sort="string-ins"><?php _e( 'Item', 'woocommerce' ); ?></th> <?php do_action( 'woocommerce_admin_order_item_headers', $order ); ?> <th class="item_cost sortable" data-sort="float"><?php _e( 'Cost', 'woocommerce' ); ?></th> <th class="quantity sortable" data-sort="int"><?php _e( 'Qty', 'woocommerce' ); ?></th> <th class="line_cost sortable" data-sort="float"><?php _e( 'Total', 'woocommerce' ); ?></th> <?php if ( ! empty( $order_taxes ) ) : foreach ( $order_taxes as $tax_id => $tax_item ) : $tax_class = wc_get_tax_class_by_tax_id( $tax_item['rate_id'] ); $tax_class_name = isset( $classes_options[ $tax_class ] ) ? $classes_options[ $tax_class ] : __( 'Tax', 'woocommerce' ); $column_label = ! empty( $tax_item['label'] ) ? $tax_item['label'] : __( 'Tax', 'woocommerce' ); $column_tip = sprintf( esc_html__( '%1$s (%2$s)', 'woocommerce' ), $tax_item['name'], $tax_class_name ); ?> <th class="line_tax tips" data-tip="<?php echo esc_attr( $column_tip ); ?>"> <?php echo esc_attr( $column_label ); ?> <input type="hidden" class="order-tax-id" name="order_taxes[<?php echo $tax_id; ?>]" value="<?php echo esc_attr( $tax_item['rate_id'] ); ?>"> <a class="delete-order-tax" href="#" data-rate_id="<?php echo $tax_id; ?>"></a> </th> <?php endforeach; endif; ?> <th class="wc-order-edit-line-item" width="1%"> </th> </tr> </thead> <tbody id="order_line_items"> <?php foreach ( $line_items as $item_id => $item ) { do_action( 'woocommerce_before_order_item_' . $item->get_type() . '_html', $item_id, $item, $order ); include( 'html-order-item.php' ); do_action( 'woocommerce_order_item_' . $item->get_type() . '_html', $item_id, $item, $order ); } do_action( 'woocommerce_admin_order_items_after_line_items', $order->get_id() ); ?> </tbody> <tbody id="order_shipping_line_items"> <?php $shipping_methods = WC()->shipping() ? WC()->shipping->load_shipping_methods() : array(); foreach ( $line_items_shipping as $item_id => $item ) { include( 'html-order-shipping.php' ); } do_action( 'woocommerce_admin_order_items_after_shipping', $order->get_id() ); ?> </tbody> <tbody id="order_fee_line_items"> <?php foreach ( $line_items_fee as $item_id => $item ) { include( 'html-order-fee.php' ); } do_action( 'woocommerce_admin_order_items_after_fees', $order->get_id() ); ?> </tbody> <tbody id="order_refunds"> <?php if ( $refunds = $order->get_refunds() ) { foreach ( $refunds as $refund ) { include( 'html-order-refund.php' ); } do_action( 'woocommerce_admin_order_items_after_refunds', $order->get_id() ); } ?> </tbody> </table> </div> <div class="wc-order-data-row wc-order-item-bulk-edit" style="display:none;"> <button type="button" class="button bulk-delete-items"><?php _e( 'Delete selected row(s)', 'woocommerce' ); ?></button> <button type="button" class="button bulk-decrease-stock"><?php _e( 'Reduce stock', 'woocommerce' ); ?></button> <button type="button" class="button bulk-increase-stock"><?php _e( 'Increase stock', 'woocommerce' ); ?></button> <?php do_action( 'woocommerce_admin_order_item_bulk_actions', $order ); ?> </div> <div class="wc-order-data-row wc-order-totals-items wc-order-items-editable"> <?php $coupons = $order->get_items( array( 'coupon' ) ); if ( $coupons ) { ?> <div class="wc-used-coupons"> <ul class="wc_coupon_list"><?php echo '<li><strong>' . __( 'Coupon(s)', 'woocommerce' ) . '</strong></li>'; foreach ( $coupons as $item_id => $item ) { $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE post_title = %s AND post_type = 'shop_coupon' AND post_status = 'publish' LIMIT 1;", $item->get_code() ) ); $link = $post_id ? add_query_arg( array( 'post' => $post_id, 'action' => 'edit' ), admin_url( 'post.php' ) ) : add_query_arg( array( 's' => $item->get_code(), 'post_status' => 'all', 'post_type' => 'shop_coupon' ), admin_url( 'edit.php' ) ); echo '<li class="code"><a href="' . esc_url( $link ) . '" class="tips" data-tip="' . esc_attr( wc_price( $item->get_discount(), array( 'currency' => $order->get_currency() ) ) ) . '"><span>' . esc_html( $item->get_code() ) . '</span></a></li>'; } ?></ul> </div> <?php } ?> <table class="wc-order-totals"> <tr> <td class="label"><?php echo wc_help_tip( __( 'This is the total discount. Discounts are defined per line item.', 'woocommerce' ) ); ?> <?php _e( 'Discount:', 'woocommerce' ); ?></td> <td width="1%"></td> <td class="total"> <?php echo wc_price( $order->get_total_discount(), array( 'currency' => $order->get_currency() ) ); ?> </td> </tr> <?php do_action( 'woocommerce_admin_order_totals_after_discount', $order->get_id() ); ?> <tr> <td class="label"><?php echo wc_help_tip( __( 'This is the shipping and handling total costs for the order.', 'woocommerce' ) ); ?> <?php _e( 'Shipping:', 'woocommerce' ); ?></td> <td width="1%"></td> <td class="total"><?php if ( ( $refunded = $order->get_total_shipping_refunded() ) > 0 ) { echo '<del>' . strip_tags( wc_price( $order->get_shipping_total(), array( 'currency' => $order->get_currency() ) ) ) . '</del> <ins>' . wc_price( $order->get_shipping_total() - $refunded, array( 'currency' => $order->get_currency() ) ) . '</ins>'; } else { echo wc_price( $order->get_shipping_total(), array( 'currency' => $order->get_currency() ) ); } ?></td> </tr> <?php do_action( 'woocommerce_admin_order_totals_after_shipping', $order->get_id() ); ?> <?php if ( wc_tax_enabled() ) : ?> <?php foreach ( $order->get_tax_totals() as $code => $tax ) : ?> <tr> <td class="label"><?php echo $tax->label; ?>:</td> <td width="1%"></td> <td class="total"><?php if ( ( $refunded = $order->get_total_tax_refunded_by_rate_id( $tax->rate_id ) ) > 0 ) { echo '<del>' . strip_tags( $tax->formatted_amount ) . '</del> <ins>' . wc_price( WC_Tax::round( $tax->amount, wc_get_price_decimals() ) - WC_Tax::round( $refunded, wc_get_price_decimals() ), array( 'currency' => $order->get_currency() ) ) . '</ins>'; } else { echo $tax->formatted_amount; } ?></td> </tr> <?php endforeach; ?> <?php endif; ?> <?php do_action( 'woocommerce_admin_order_totals_after_tax', $order->get_id() ); ?> <tr> <td class="label"><?php _e( 'Order total', 'woocommerce' ); ?>:</td> <td width="1%"></td> <td class="total"> <?php echo $order->get_formatted_order_total(); ?> </td> </tr> <?php do_action( 'woocommerce_admin_order_totals_after_total', $order->get_id() ); ?> <?php if ( $order->get_total_refunded() ) : ?> <tr> <td class="label refunded-total"><?php _e( 'Refunded', 'woocommerce' ); ?>:</td> <td width="1%"></td> <td class="total refunded-total">-<?php echo wc_price( $order->get_total_refunded(), array( 'currency' => $order->get_currency() ) ); ?></td> </tr> <?php endif; ?> <?php do_action( 'woocommerce_admin_order_totals_after_refunded', $order->get_id() ); ?> </table> <div class="clear"></div> </div> <div class="wc-order-data-row wc-order-bulk-actions wc-order-data-row-toggle"> <p class="add-items"> <?php if ( $order->is_editable() ) : ?> <button type="button" class="button add-line-item"><?php _e( 'Add item(s)', 'woocommerce' ); ?></button> <?php else : ?> <span class="description"><?php echo wc_help_tip( __( 'To edit this order change the status back to "Pending"', 'woocommerce' ) ); ?> <?php _e( 'This order is no longer editable.', 'woocommerce' ); ?></span> <?php endif; ?> <?php if ( wc_tax_enabled() && $order->is_editable() ) : ?> <button type="button" class="button add-order-tax"><?php _e( 'Add tax', 'woocommerce' ); ?></button> <?php endif; ?> <?php if ( 0 < $order->get_total() - $order->get_total_refunded() || 0 < absint( $order->get_item_count() - $order->get_item_count_refunded() ) ) : ?> <button type="button" class="button refund-items"><?php _e( 'Refund', 'woocommerce' ); ?></button> <?php endif; ?> <?php // allow adding custom buttons do_action( 'woocommerce_order_item_add_action_buttons', $order ); ?> <?php if ( $order->is_editable() ) : ?> <button type="button" class="button button-primary calculate-action"><?php _e( 'Recalculate', 'woocommerce' ); ?></button> <?php endif; ?> </p> </div> <div class="wc-order-data-row wc-order-add-item wc-order-data-row-toggle" style="display:none;"> <button type="button" class="button add-order-item"><?php _e( 'Add product(s)', 'woocommerce' ); ?></button> <button type="button" class="button add-order-fee"><?php _e( 'Add fee', 'woocommerce' ); ?></button> <button type="button" class="button add-order-shipping"><?php _e( 'Add shipping cost', 'woocommerce' ); ?></button> <?php // allow adding custom buttons do_action( 'woocommerce_order_item_add_line_buttons', $order ); ?> <button type="button" class="button cancel-action"><?php _e( 'Cancel', 'woocommerce' ); ?></button> <button type="button" class="button button-primary save-action"><?php _e( 'Save', 'woocommerce' ); ?></button> </div> <?php if ( 0 < $order->get_total() - $order->get_total_refunded() || 0 < absint( $order->get_item_count() - $order->get_item_count_refunded() ) ) : ?> <div class="wc-order-data-row wc-order-refund-items wc-order-data-row-toggle" style="display: none;"> <table class="wc-order-totals"> <?php if ( 'yes' === get_option( 'woocommerce_manage_stock' ) ) : ?> <tr> <td class="label"><label for="restock_refunded_items"><?php _e( 'Restock refunded items', 'woocommerce' ); ?>:</label></td> <td class="total"><input type="checkbox" id="restock_refunded_items" name="restock_refunded_items" checked="checked" /></td> </tr> <?php endif; ?> <tr> <td class="label"><?php _e( 'Amount already refunded', 'woocommerce' ); ?>:</td> <td class="total">-<?php echo wc_price( $order->get_total_refunded(), array( 'currency' => $order->get_currency() ) ); ?></td> </tr> <tr> <td class="label"><?php _e( 'Total available to refund', 'woocommerce' ); ?>:</td> <td class="total"><?php echo wc_price( $order->get_total() - $order->get_total_refunded(), array( 'currency' => $order->get_currency() ) ); ?></td> </tr> <tr> <td class="label"><label for="refund_amount"><?php _e( 'Refund amount', 'woocommerce' ); ?>:</label></td> <td class="total"> <input type="text" class="text" id="refund_amount" name="refund_amount" class="wc_input_price" /> <div class="clear"></div> </td> </tr> <tr> <td class="label"><label for="refund_reason"><?php echo wc_help_tip( __( 'Note: the refund reason will be visible by the customer.', 'woocommerce' ) ); ?> <?php _e( 'Reason for refund (optional):', 'woocommerce' ); ?></label></td> <td class="total"> <input type="text" class="text" id="refund_reason" name="refund_reason" /> <div class="clear"></div> </td> </tr> </table> <div class="clear"></div> <div class="refund-actions"> <?php $refund_amount = '<span class="wc-order-refund-amount">' . wc_price( 0, array( 'currency' => $order->get_currency() ) ) . '</span>'; $gateway_supports_refunds = false !== $payment_gateway && $payment_gateway->supports( 'refunds' ); $gateway_name = false !== $payment_gateway ? ( ! empty( $payment_gateway->method_title ) ? $payment_gateway->method_title : $payment_gateway->get_title() ) : __( 'Payment gateway', 'woocommerce' ); ?> <button type="button" class="button <?php echo $gateway_supports_refunds ? 'button-primary do-api-refund' : 'tips disabled'; ?>" <?php echo $gateway_supports_refunds ? '' : 'data-tip="' . esc_attr__( 'The payment gateway used to place this order does not support automatic refunds.', 'woocommerce' ) . '"'; ?>><?php printf( __( 'Refund %1$s via %2$s', 'woocommerce' ), $refund_amount, $gateway_name ); ?></button> <button type="button" class="button button-primary do-manual-refund tips" data-tip="<?php esc_attr_e( 'You will need to manually issue a refund through your payment gateway after using this.', 'woocommerce' ); ?>"><?php printf( __( 'Refund %s manually', 'woocommerce' ), $refund_amount ); ?></button> <button type="button" class="button cancel-action"><?php _e( 'Cancel', 'woocommerce' ); ?></button> <div class="clear"></div> </div> </div> <?php endif; ?> <script type="text/template" id="tmpl-wc-modal-add-products"> <div class="wc-backbone-modal"> <div class="wc-backbone-modal-content"> <section class="wc-backbone-modal-main" role="main"> <header class="wc-backbone-modal-header"> <h1><?php _e( 'Add products', 'woocommerce' ); ?></h1> <button class="modal-close modal-close-link dashicons dashicons-no-alt"> <span class="screen-reader-text">Close modal panel</span> </button> </header> <article> <form action="" method="post"> <select class="wc-product-search" multiple="multiple" style="width: 50%;" id="add_item_id" name="add_order_items[]" data-placeholder="<?php esc_attr_e( 'Search for a product…', 'woocommerce' ); ?>"></select> </form> </article> <footer> <div class="inner"> <button id="btn-ok" class="button button-primary button-large"><?php _e( 'Add', 'woocommerce' ); ?></button> </div> </footer> </section> </div> </div> <div class="wc-backbone-modal-backdrop modal-close"></div> </script> <script type="text/template" id="tmpl-wc-modal-add-tax"> <div class="wc-backbone-modal"> <div class="wc-backbone-modal-content"> <section class="wc-backbone-modal-main" role="main"> <header class="wc-backbone-modal-header"> <h1><?php _e( 'Add tax', 'woocommerce' ); ?></h1> <button class="modal-close modal-close-link dashicons dashicons-no-alt"> <span class="screen-reader-text">Close modal panel</span> </button> </header> <article> <form action="" method="post"> <table class="widefat"> <thead> <tr> <th> </th> <th><?php _e( 'Rate name', 'woocommerce' ); ?></th> <th><?php _e( 'Tax class', 'woocommerce' ); ?></th> <th><?php _e( 'Rate code', 'woocommerce' ); ?></th> <th><?php _e( 'Rate %', 'woocommerce' ); ?></th> </tr> </thead> <?php $rates = $wpdb->get_results( "SELECT * FROM {$wpdb->prefix}woocommerce_tax_rates ORDER BY tax_rate_name LIMIT 100" ); foreach ( $rates as $rate ) { echo ' <tr> <td><input type="radio" id="add_order_tax_' . absint( $rate->tax_rate_id ) . '" name="add_order_tax" value="' . absint( $rate->tax_rate_id ) . '" /></td> <td><label for="add_order_tax_' . absint( $rate->tax_rate_id ) . '">' . WC_Tax::get_rate_label( $rate ) . '</label></td> <td>' . ( isset( $classes_options[ $rate->tax_rate_class ] ) ? $classes_options[ $rate->tax_rate_class ] : '-' ) . '</td> <td>' . WC_Tax::get_rate_code( $rate ) . '</td> <td>' . WC_Tax::get_rate_percent( $rate ) . '</td> </tr> '; } ?> </table> <?php if ( absint( $wpdb->get_var( "SELECT COUNT(tax_rate_id) FROM {$wpdb->prefix}woocommerce_tax_rates;" ) ) > 100 ) : ?> <p> <label for="manual_tax_rate_id"><?php _e( 'Or, enter tax rate ID:', 'woocommerce' ); ?></label><br/> <input type="number" name="manual_tax_rate_id" id="manual_tax_rate_id" step="1" placeholder="<?php esc_attr_e( 'Optional', 'woocommerce' ); ?>" /> </p> <?php endif; ?> </form> </article> <footer> <div class="inner"> <button id="btn-ok" class="button button-primary button-large"><?php _e( 'Add', 'woocommerce' ); ?></button> </div> </footer> </section> </div> </div> <div class="wc-backbone-modal-backdrop modal-close"></div> </script>