product_ids = array_map( 'absint', $_GET['product_ids'] ); elseif ( isset( $_GET['product_ids'] ) ) $this->product_ids = array( absint( $_GET['product_ids'] ) ); } /** * Get the legend for the main chart sidebar * @return array */ public function get_chart_legend() { if ( ! $this->product_ids ) return array(); $legend = array(); $total_sales = $this->get_order_report_data( array( 'data' => array( '_line_total' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_amount' ) ), 'where_meta' => array( array( 'type' => 'order_item_meta', 'meta_key' => '_product_id', 'meta_value' => $this->product_ids, 'operator' => 'IN' ) ), 'query_type' => 'get_var', 'filter_range' => true ) ); $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_count' ) ), 'where_meta' => array( array( 'type' => 'order_item_meta', 'meta_key' => '_product_id', 'meta_value' => $this->product_ids, 'operator' => 'IN' ) ), 'query_type' => 'get_var', 'filter_range' => true ) ) ); $legend[] = array( 'title' => sprintf( __( '%s sales for the selected items', 'woocommerce' ), '' . woocommerce_price( $total_sales ) . '' ), 'color' => $this->chart_colours['sales_amount'] ); $legend[] = array( 'title' => sprintf( __( '%s purchases for the selected items', 'woocommerce' ), '' . $total_items . '' ), 'color' => $this->chart_colours['item_count'] ); return $legend; } /** * Output the report */ public function output_report() { global $woocommerce, $wpdb, $wp_locale; $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', 'item_count' => '#d4d9dc', ); $current_range = ! empty( $_GET['range'] ) ? $_GET['range'] : '7day'; switch ( $current_range ) { case 'custom' : $this->start_date = strtotime( sanitize_text_field( $_GET['start_date'] ) ); $this->end_date = strtotime( '12am + 1 day', strtotime( sanitize_text_field( $_GET['end_date'] ) ) ); if ( ! $this->end_date ) $this->end_date = current_time('timestamp'); $interval = 0; $min_date = $this->start_date; while ( ( $min_date = strtotime( "+1 MONTH", $min_date ) ) <= $this->end_date ) { $interval ++; } // 3 months max for day view if ( $interval > 3 ) $this->chart_groupby = 'month'; else $this->chart_groupby = 'day'; break; case 'year' : $this->start_date = strtotime( 'first day of january', current_time('timestamp') ); $this->end_date = strtotime( '12am + 1 day', current_time( 'timestamp' ) ); $this->chart_groupby = 'month'; break; case 'last_month' : $this->start_date = strtotime( 'first day of last month', current_time('timestamp') ); $this->end_date = strtotime( 'last day of last month', current_time('timestamp') ); $this->chart_groupby = 'day'; break; case 'month' : $this->start_date = strtotime( 'first day of this month', current_time('timestamp') ); $this->end_date = strtotime( '12am + 1 day', current_time( 'timestamp' ) ); $this->chart_groupby = 'day'; break; case '7day' : default : $this->start_date = strtotime( '-6 days', current_time( 'timestamp' ) ); $this->end_date = strtotime( '12am + 1 day', current_time( 'timestamp' ) ); $this->chart_groupby = 'day'; break; } // Group by switch ( $this->chart_groupby ) { case 'day' : $this->group_by_query = 'YEAR(post_date), MONTH(post_date), DAY(post_date)'; $this->chart_interval = max( 0, ( $this->end_date - $this->start_date ) / ( 60 * 60 * 24 ) ); $this->barwidth = 60 * 60 * 24 * 1000; break; case 'month' : $this->group_by_query = 'YEAR(post_date), MONTH(post_date)'; $this->chart_interval = 0; $min_date = $this->start_date; while ( ( $min_date = strtotime( "+1 MONTH", $min_date ) ) <= $this->end_date ) { $this->chart_interval ++; } $this->barwidth = 60 * 60 * 24 * 7 * 4 * 1000; break; } include( WC()->plugin_path() . '/admin/views/html-report-by-date.php'); } /** * [get_chart_widgets description] * @return array */ public function get_chart_widgets() { $widgets = array(); if ( ! empty( $this->product_ids ) ) { $widgets[] = array( 'title' => __( 'Showing reports for:', 'woocommerce' ), 'callback' => array( $this, 'current_filters' ) ); } $widgets[] = array( 'title' => '', 'callback' => array( $this, 'products_widget' ) ); return $widgets; } /** * Show current filters * @return void */ public function current_filters() { $this->product_ids_titles = array(); foreach ( $this->product_ids as $product_id ) { $this->product_ids_titles[] = get_the_title( $product_id ); } echo '

' . ' ' . implode( ', ', $this->product_ids_titles ) . '

'; echo '

' . __( 'Reset', 'woocommerce' ) . '

'; } /** * Product selection * @return void */ public function products_widget() { ?>

get_order_report_data( array( 'data' => array( '_product_id' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => '', 'name' => 'product_id' ), '_qty' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_qty' ) ), 'order_by' => 'order_item_qty DESC', 'group_by' => 'product_id', 'limit' => 12, 'query_type' => 'get_results', 'filter_range' => true ) ); if ( $top_sellers ) { foreach ( $top_sellers as $product ) { echo ''; } } else { echo ''; } ?>
' . $product->order_item_qty . ' ' . get_the_title( $product->product_id ) . ' ' . $this->sales_sparkline( $product->product_id, 14, 'count' ) . '
' . __( 'No products found in range', 'woocommerce' ) . '

get_order_report_data( array( 'data' => array( '_product_id' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => '', 'name' => 'product_id' ), '_line_total' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_total' ) ), 'order_by' => 'order_item_total DESC', 'group_by' => 'product_id', 'limit' => 12, 'query_type' => 'get_results', 'filter_range' => true ) ); if ( $top_earners ) { foreach ( $top_earners as $product ) { echo ''; } } else { echo ''; } ?>
' . woocommerce_price( $product->order_item_total ) . ' ' . get_the_title( $product->product_id ) . ' ' . $this->sales_sparkline( $product->product_id, 14, 'sales' ) . '
' . __( 'No products found in range', 'woocommerce' ) . '
product_ids ) { ?>

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_meta' => array( array( 'type' => 'order_item_meta', 'meta_key' => '_product_id', 'meta_value' => $this->product_ids, 'operator' => 'IN' ) ), 'group_by' => $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true ) ); $order_item_amounts = $this->get_order_report_data( array( 'data' => array( '_line_total' => array( 'type' => 'order_item_meta', 'order_item_type' => 'line_item', 'function' => 'SUM', 'name' => 'order_item_amount' ), 'post_date' => array( 'type' => 'post_data', 'function' => '', 'name' => 'post_date' ), ), 'where_meta' => array( array( 'type' => 'order_item_meta', 'meta_key' => '_product_id', 'meta_value' => $this->product_ids, 'operator' => 'IN' ) ), 'group_by' => $this->group_by_query, 'order_by' => 'post_date ASC', 'query_type' => 'get_results', 'filter_range' => true ) ); // Prepare data for report $order_item_counts = $this->prepare_chart_data( $order_item_counts, 'post_date', 'order_item_count', $this->chart_interval, $this->start_date, $this->chart_groupby ); $order_item_amounts = $this->prepare_chart_data( $order_item_amounts, 'post_date', 'order_item_amount', $this->chart_interval, $this->start_date, $this->chart_groupby ); // Encode in json format $chart_data = json_encode( array( 'order_item_counts' => array_values( $order_item_counts ), 'order_item_amounts' => array_values( $order_item_amounts ) ) ); ?>