From d6d68ed9cd3a97e9b72b4d5867bb038321729541 Mon Sep 17 00:00:00 2001 From: Gustavo Bordoni Date: Tue, 1 Dec 2020 13:16:53 -0500 Subject: [PATCH] Remove white space. --- includes/admin/reports/class-wc-report-sales-by-date.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin/reports/class-wc-report-sales-by-date.php b/includes/admin/reports/class-wc-report-sales-by-date.php index 899566b1541..705917bef77 100644 --- a/includes/admin/reports/class-wc-report-sales-by-date.php +++ b/includes/admin/reports/class-wc-report-sales-by-date.php @@ -255,7 +255,7 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { $total_shipping = is_numeric( $order->total_shipping ) ? $order->total_shipping : 0; $total_tax = is_numeric( $order->total_tax ) ? $order->total_tax : 0; $total_shipping_tax = is_numeric( $order->total_shipping_tax ) ? $order->total_shipping_tax : 0; - + $this->report_data->full_refunds[ $key ]->net_refund = $total_refund - ( $total_shipping + $total_tax + $total_shipping_tax ); }