get_order_report_data( array( 'data' => array( '_order_total' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_sales' ), '_order_shipping' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_shipping' ) ), 'order_types' => wc_get_order_types( 'sales-reports' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), 'filter_range' => true ) ); $total_sales = $order_totals->total_sales; $total_shipping = $order_totals->total_shipping; $total_orders = absint( $this->get_order_report_data( array( 'data' => array( 'ID' => array( 'type' => 'post_data', 'function' => 'COUNT', 'name' => 'total_orders' ) ), 'query_type' => 'get_var', 'filter_range' => true, 'order_types' => wc_get_order_types( 'order-count' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), ) ) ); $total_items = absint( $this->get_order_report_data( array( 'data' => array( '_qty' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_qty' ) ), 'query_type' => 'get_var', 'order_types' => wc_get_order_types( 'order-count' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), 'filter_range' => true, ) ) ); // Get discount amounts in range $total_coupons = $this->get_order_report_data( array( 'data' => array( 'discount_amount' => array( 'type' => 'order_item_meta', 'order_item_type' => 'coupon', 'function' => 'SUM', 'name' => 'discount_amount' ) ), 'where' => array( array( 'key' => 'order_items.order_item_type', 'value' => 'coupon', 'operator' => '=' ) ), 'query_type' => 'get_var', 'order_types' => wc_get_order_types( 'order-count' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), 'filter_range' => true, ) ); $partial_refunds = $this->get_order_report_data( array( 'data' => array( '_refund_amount' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_refund' ) ), 'query_type' => 'get_var', 'order_types' => array( 'shop_order_refund' ), 'filter_range' => true, 'order_status' => false, 'parent_order_status' => array( 'completed', 'processing', 'on-hold' ), ) ); $full_refunds = $this->get_order_report_data( array( 'data' => array( '_order_total' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_sales' ), ), 'query_type' => 'get_var', 'order_types' => wc_get_order_types( 'sales-reports' ), 'order_status' => array( 'refunded' ), 'filter_range' => true ) ); $total_refunds = $partial_refunds + $full_refunds; $this->average_sales = $total_sales / ( $this->chart_interval + 1 ); switch ( $this->chart_groupby ) { case 'day' : $average_sales_title = sprintf( __( '%s average daily sales', 'woocommerce' ), '' . wc_price( $this->average_sales ) . '' ); break; case 'month' : $average_sales_title = sprintf( __( '%s average monthly sales', 'woocommerce' ), '' . wc_price( $this->average_sales ) . '' ); break; } $legend[] = array( 'title' => sprintf( __( '%s sales in this period', 'woocommerce' ), '' . wc_price( $total_sales ) . '' ), 'placeholder' => __( 'Sales are the sum of the order totals - this includes shipping and discounts.', 'woocommerce' ), 'color' => $this->chart_colours['sales_amount'], 'highlight_series' => 6 ); $legend[] = array( 'title' => $average_sales_title, 'color' => $this->chart_colours['average'], 'highlight_series' => 2 ); $legend[] = array( 'title' => sprintf( __( '%s orders placed', 'woocommerce' ), '' . $total_orders . '' ), 'color' => $this->chart_colours['order_count'], 'highlight_series' => 1 ); $legend[] = array( 'title' => sprintf( __( '%s items purchased', 'woocommerce' ), '' . $total_items . '' ), 'color' => $this->chart_colours['item_count'], 'highlight_series' => 0 ); $legend[] = array( 'title' => sprintf( __( '%s in refunds', 'woocommerce' ), '' . wc_price( $total_refunds ) . '' ), 'color' => $this->chart_colours['refund_amount'], 'highlight_series' => 4 ); $legend[] = array( 'title' => sprintf( __( '%s charged for shipping', 'woocommerce' ), '' . wc_price( $total_shipping ) . '' ), 'color' => $this->chart_colours['shipping_amount'], 'highlight_series' => 5 ); $legend[] = array( 'title' => sprintf( __( '%s worth of coupons used', 'woocommerce' ), '' . wc_price( $total_coupons ) . '' ), 'color' => $this->chart_colours['coupon_amount'], 'highlight_series' => 3 ); return $legend; } /** * Output the report */ public function output_report() { $ranges = array( 'year' => __( 'Year', 'woocommerce' ), 'last_month' => __( 'Last Month', 'woocommerce' ), 'month' => __( 'This Month', 'woocommerce' ), '7day' => __( 'Last 7 Days', 'woocommerce' ) ); $this->chart_colours = array( 'sales_amount' => '#3498db', 'average' => '#75b9e7', 'order_count' => '#b8c0c5', 'item_count' => '#d4d9dc', 'coupon_amount' => '#e67e22', 'shipping_amount' => '#1abc9c', 'refund_amount' => '#c0392b' ); $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ) ) ) { $current_range = '7day'; } $this->calculate_current_range( $current_range ); include( WC()->plugin_path() . '/includes/admin/views/html-report-by-date.php'); } /** * Output an export link */ public function get_export_button() { $current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( $_GET['range'] ) : '7day'; ?> get_order_report_data( array( 'data' => array( '_order_total' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_sales' ), '_order_shipping' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_shipping' ), 'ID' => array( 'type' => 'post_data', 'function' => 'COUNT', 'name' => 'total_orders', 'distinct' => true, ), 'post_date' => array( 'type' => 'post_data', 'function' => '', 'name' => 'post_date' ), ), 'group_by' => $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true, 'order_types' => wc_get_order_types( 'sales-reports' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), ) ); // Order items $order_items = $this->get_order_report_data( array( 'data' => array( '_qty' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_count' ), 'post_date' => array( 'type' => 'post_data', 'function' => '', 'name' => 'post_date' ), ), 'where' => array( array( 'key' => 'order_items.order_item_type', 'value' => 'line_item', 'operator' => '=' ) ), 'group_by' => $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true, 'order_types' => wc_get_order_types( 'sales-reports' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), ) ); // Get discount amounts in range $coupons = $this->get_order_report_data( array( 'data' => array( 'order_item_name' => array( 'type' => 'order_item', 'function' => '', 'name' => 'order_item_name' ), 'discount_amount' => array( 'type' => 'order_item_meta', 'order_item_type' => 'coupon', 'function' => 'SUM', 'name' => 'discount_amount' ), 'post_date' => array( 'type' => 'post_data', 'function' => '', 'name' => 'post_date' ), ), 'where' => array( array( 'key' => 'order_items.order_item_type', 'value' => 'coupon', 'operator' => '=' ) ), 'group_by' => $this->group_by_query . ', order_item_name', 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true, 'order_types' => wc_get_order_types( 'sales-reports' ), 'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ), ) ); $partial_refunds = $this->get_order_report_data( array( 'data' => array( '_refund_amount' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_refund' ), 'post_date' => array( 'type' => 'post_data', 'function' => '', 'name' => 'post_date' ) ), 'group_by' => $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true, 'order_status' => false, 'parent_order_status' => array( 'completed', 'processing', 'on-hold' ), ) ); $full_refunds = $this->get_order_report_data( array( 'data' => array( '_order_total' => array( 'type' => 'meta', 'function' => 'SUM', 'name' => 'total_refund' ), 'post_date' => array( 'type' => 'post_data', 'function' => '', 'name' => 'post_date' ), ), 'group_by' => $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true, 'order_status' => array( 'refunded' ), ) ); $refunds = array_merge($partial_refunds, $full_refunds); // Prepare data for report $order_counts = $this->prepare_chart_data( $orders, 'post_date', 'total_orders', $this->chart_interval, $this->start_date, $this->chart_groupby ); $order_item_counts = $this->prepare_chart_data( $order_items, 'post_date', 'order_item_count', $this->chart_interval, $this->start_date, $this->chart_groupby ); $order_amounts = $this->prepare_chart_data( $orders, 'post_date', 'total_sales', $this->chart_interval, $this->start_date, $this->chart_groupby ); $coupon_amounts = $this->prepare_chart_data( $coupons, 'post_date', 'discount_amount', $this->chart_interval, $this->start_date, $this->chart_groupby ); $shipping_amounts = $this->prepare_chart_data( $orders, 'post_date', 'total_shipping', $this->chart_interval, $this->start_date, $this->chart_groupby ); $refund_amounts = $this->prepare_chart_data( $refunds, 'post_date', 'total_refund', $this->chart_interval, $this->start_date, $this->chart_groupby ); // Encode in json format $chart_data = json_encode( array( 'order_counts' => array_values( $order_counts ), 'order_item_counts' => array_values( $order_item_counts ), 'order_amounts' => array_values( $order_amounts ), 'coupon_amounts' => array_values( $coupon_amounts ), 'shipping_amounts' => array_values( $shipping_amounts ), 'refund_amounts' => array_values( $refund_amounts ) ) ); ?>