2013-06-26 14:11:33 +00:00
|
|
|
<?php
|
2019-01-21 19:36:29 +00:00
|
|
|
/**
|
|
|
|
* WC_Report_Sales_By_Date
|
|
|
|
*
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\Admin\Reports
|
2019-01-21 19:36:29 +00:00
|
|
|
* @version 2.1.0
|
|
|
|
*/
|
2016-01-05 11:28:49 +00:00
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2019-01-21 19:36:29 +00:00
|
|
|
exit; // Exit if accessed directly.
|
2016-01-05 11:28:49 +00:00
|
|
|
}
|
|
|
|
|
2013-06-26 14:11:33 +00:00
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* WC_Report_Sales_By_Date
|
2013-06-26 14:11:33 +00:00
|
|
|
*/
|
|
|
|
class WC_Report_Sales_By_Date extends WC_Admin_Report {
|
|
|
|
|
2016-01-05 11:28:49 +00:00
|
|
|
/**
|
2016-12-19 11:28:09 +00:00
|
|
|
* Chart colors.
|
2016-01-05 11:28:49 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-12-20 11:07:31 +00:00
|
|
|
public $chart_colours = array();
|
2016-01-05 11:28:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The report data.
|
|
|
|
*
|
|
|
|
* @var stdClass
|
|
|
|
*/
|
2015-02-13 21:25:59 +00:00
|
|
|
private $report_data;
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Get report data.
|
2018-03-05 18:59:17 +00:00
|
|
|
*
|
2016-01-05 11:28:49 +00:00
|
|
|
* @return stdClass
|
2015-02-13 21:25:59 +00:00
|
|
|
*/
|
|
|
|
public function get_report_data() {
|
|
|
|
if ( empty( $this->report_data ) ) {
|
|
|
|
$this->query_report_data();
|
|
|
|
}
|
|
|
|
return $this->report_data;
|
|
|
|
}
|
2014-08-31 07:19:13 +00:00
|
|
|
|
2013-06-26 14:11:33 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Get all data needed for this report and store in the class.
|
2013-06-26 14:11:33 +00:00
|
|
|
*/
|
2015-02-13 13:40:30 +00:00
|
|
|
private function query_report_data() {
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data = new stdClass();
|
|
|
|
|
|
|
|
$this->report_data->order_counts = (array) $this->get_order_report_data(
|
|
|
|
array(
|
|
|
|
'data' => array(
|
|
|
|
'ID' => array(
|
|
|
|
'type' => 'post_data',
|
|
|
|
'function' => 'COUNT',
|
|
|
|
'name' => 'count',
|
|
|
|
'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( 'order-count' ),
|
|
|
|
'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->report_data->coupons = (array) $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( 'order-count' ),
|
|
|
|
'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ),
|
|
|
|
)
|
|
|
|
);
|
2015-01-06 13:27:44 +00:00
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
// All items from orders - even those refunded.
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->order_items = (array) $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( 'order-count' ),
|
|
|
|
'order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ),
|
|
|
|
)
|
|
|
|
);
|
2015-02-13 13:40:30 +00:00
|
|
|
|
2015-07-01 11:11:21 +00:00
|
|
|
/**
|
|
|
|
* Get total of fully refunded items.
|
|
|
|
*/
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->refunded_order_items = absint(
|
|
|
|
$this->get_order_report_data(
|
2015-02-13 13:40:30 +00:00
|
|
|
array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'data' => array(
|
|
|
|
'_qty' => array(
|
|
|
|
'type' => 'order_item_meta',
|
|
|
|
'order_item_type' => 'line_item',
|
|
|
|
'function' => 'SUM',
|
|
|
|
'name' => 'order_item_count',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'where' => array(
|
|
|
|
array(
|
|
|
|
'key' => 'order_items.order_item_type',
|
|
|
|
'value' => 'line_item',
|
|
|
|
'operator' => '=',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'query_type' => 'get_var',
|
|
|
|
'filter_range' => true,
|
|
|
|
'order_types' => wc_get_order_types( 'order-count' ),
|
|
|
|
'order_status' => array( 'refunded' ),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2015-07-01 11:11:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Order totals by date. Charts should show GROSS amounts to avoid going -ve.
|
|
|
|
*/
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->orders = (array) $this->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_tax' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => 'SUM',
|
|
|
|
'name' => 'total_tax',
|
|
|
|
),
|
|
|
|
'_order_shipping_tax' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => 'SUM',
|
|
|
|
'name' => 'total_shipping_tax',
|
|
|
|
),
|
|
|
|
'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' ),
|
|
|
|
)
|
|
|
|
);
|
2015-01-06 13:27:44 +00:00
|
|
|
|
2015-07-01 11:11:21 +00:00
|
|
|
/**
|
|
|
|
* If an order is 100% refunded we should look at the parent's totals, but the refunds dates.
|
|
|
|
* We also need to ensure each parent order's values are only counted/summed once.
|
|
|
|
*/
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->full_refunds = (array) $this->get_order_report_data(
|
|
|
|
array(
|
|
|
|
'data' => array(
|
|
|
|
'_order_total' => array(
|
|
|
|
'type' => 'parent_meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_refund',
|
|
|
|
),
|
|
|
|
'_order_shipping' => array(
|
|
|
|
'type' => 'parent_meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_shipping',
|
|
|
|
),
|
|
|
|
'_order_tax' => array(
|
|
|
|
'type' => 'parent_meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_tax',
|
|
|
|
),
|
|
|
|
'_order_shipping_tax' => array(
|
|
|
|
'type' => 'parent_meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_shipping_tax',
|
|
|
|
),
|
|
|
|
'post_date' => array(
|
|
|
|
'type' => 'post_data',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'post_date',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'group_by' => 'posts.post_parent',
|
|
|
|
'query_type' => 'get_results',
|
|
|
|
'filter_range' => true,
|
|
|
|
'order_status' => false,
|
|
|
|
'parent_order_status' => array( 'refunded' ),
|
|
|
|
)
|
|
|
|
);
|
2015-07-01 11:11:21 +00:00
|
|
|
|
2019-01-21 19:44:53 +00:00
|
|
|
foreach ( $this->report_data->full_refunds as $key => $order ) {
|
2020-11-25 05:10:04 +00:00
|
|
|
$total_refund = is_numeric( $order->total_refund ) ? $order->total_refund : 0;
|
|
|
|
$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;
|
2020-12-01 18:16:53 +00:00
|
|
|
|
2020-11-25 05:10:04 +00:00
|
|
|
$this->report_data->full_refunds[ $key ]->net_refund = $total_refund - ( $total_shipping + $total_tax + $total_shipping_tax );
|
2019-01-21 19:44:53 +00:00
|
|
|
}
|
|
|
|
|
2015-07-01 11:11:21 +00:00
|
|
|
/**
|
|
|
|
* Partial refunds. This includes line items, shipping and taxes. Not grouped by date.
|
|
|
|
*/
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->partial_refunds = (array) $this->get_order_report_data(
|
|
|
|
array(
|
|
|
|
'data' => array(
|
|
|
|
'ID' => array(
|
|
|
|
'type' => 'post_data',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'refund_id',
|
|
|
|
),
|
|
|
|
'_refund_amount' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_refund',
|
|
|
|
),
|
|
|
|
'post_date' => array(
|
|
|
|
'type' => 'post_data',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'post_date',
|
|
|
|
),
|
|
|
|
'order_item_type' => array(
|
|
|
|
'type' => 'order_item',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'item_type',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_order_total' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_sales',
|
|
|
|
),
|
|
|
|
'_order_shipping' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_shipping',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_order_tax' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_tax',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_order_shipping_tax' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_shipping_tax',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_qty' => array(
|
|
|
|
'type' => 'order_item_meta',
|
|
|
|
'function' => 'SUM',
|
|
|
|
'name' => 'order_item_count',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'group_by' => 'refund_id',
|
|
|
|
'order_by' => 'post_date ASC',
|
|
|
|
'query_type' => 'get_results',
|
|
|
|
'filter_range' => true,
|
|
|
|
'order_status' => false,
|
|
|
|
'parent_order_status' => array( 'completed', 'processing', 'on-hold' ),
|
|
|
|
)
|
|
|
|
);
|
2015-01-06 13:27:44 +00:00
|
|
|
|
2019-01-21 19:44:53 +00:00
|
|
|
foreach ( $this->report_data->partial_refunds as $key => $order ) {
|
|
|
|
$this->report_data->partial_refunds[ $key ]->net_refund = $order->total_refund - ( $order->total_shipping + $order->total_tax + $order->total_shipping_tax );
|
|
|
|
}
|
|
|
|
|
2017-04-18 19:29:10 +00:00
|
|
|
/**
|
|
|
|
* Refund lines - all partial refunds on all order types so we can plot full AND partial refunds on the chart.
|
|
|
|
*/
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->refund_lines = (array) $this->get_order_report_data(
|
|
|
|
array(
|
|
|
|
'data' => array(
|
|
|
|
'ID' => array(
|
|
|
|
'type' => 'post_data',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'refund_id',
|
|
|
|
),
|
|
|
|
'_refund_amount' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_refund',
|
|
|
|
),
|
|
|
|
'post_date' => array(
|
|
|
|
'type' => 'post_data',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'post_date',
|
|
|
|
),
|
|
|
|
'order_item_type' => array(
|
|
|
|
'type' => 'order_item',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'item_type',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_order_total' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_sales',
|
|
|
|
),
|
|
|
|
'_order_shipping' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_shipping',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_order_tax' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_tax',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_order_shipping_tax' => array(
|
|
|
|
'type' => 'meta',
|
|
|
|
'function' => '',
|
|
|
|
'name' => 'total_shipping_tax',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
'_qty' => array(
|
|
|
|
'type' => 'order_item_meta',
|
|
|
|
'function' => 'SUM',
|
|
|
|
'name' => 'order_item_count',
|
|
|
|
'join_type' => 'LEFT',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'group_by' => 'refund_id',
|
|
|
|
'order_by' => 'post_date ASC',
|
|
|
|
'query_type' => 'get_results',
|
|
|
|
'filter_range' => true,
|
|
|
|
'order_status' => false,
|
|
|
|
'parent_order_status' => array( 'completed', 'processing', 'on-hold', 'refunded' ),
|
|
|
|
)
|
|
|
|
);
|
2017-04-18 19:29:10 +00:00
|
|
|
|
2015-07-01 11:11:21 +00:00
|
|
|
/**
|
2016-01-22 15:50:23 +00:00
|
|
|
* Total up refunds. Note: when an order is fully refunded, a refund line will be added.
|
2015-07-01 11:11:21 +00:00
|
|
|
*/
|
2016-01-22 15:50:23 +00:00
|
|
|
$this->report_data->total_tax_refunded = 0;
|
|
|
|
$this->report_data->total_shipping_refunded = 0;
|
|
|
|
$this->report_data->total_shipping_tax_refunded = 0;
|
|
|
|
$this->report_data->total_refunds = 0;
|
2015-07-01 11:11:21 +00:00
|
|
|
|
2019-01-21 19:44:53 +00:00
|
|
|
$this->report_data->refunded_orders = array_merge( $this->report_data->partial_refunds, $this->report_data->full_refunds );
|
2016-11-23 15:36:52 +00:00
|
|
|
|
2019-01-21 19:44:53 +00:00
|
|
|
foreach ( $this->report_data->refunded_orders as $key => $value ) {
|
2017-07-14 09:26:07 +00:00
|
|
|
$this->report_data->total_tax_refunded += floatval( $value->total_tax < 0 ? $value->total_tax * -1 : $value->total_tax );
|
|
|
|
$this->report_data->total_refunds += floatval( $value->total_refund );
|
|
|
|
$this->report_data->total_shipping_tax_refunded += floatval( $value->total_shipping_tax < 0 ? $value->total_shipping_tax * -1 : $value->total_shipping_tax );
|
|
|
|
$this->report_data->total_shipping_refunded += floatval( $value->total_shipping < 0 ? $value->total_shipping * -1 : $value->total_shipping );
|
2016-11-23 15:36:52 +00:00
|
|
|
|
|
|
|
// Only applies to parial.
|
|
|
|
if ( isset( $value->order_item_count ) ) {
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->refunded_order_items += floatval( $value->order_item_count < 0 ? $value->order_item_count * -1 : $value->order_item_count );
|
2015-07-01 11:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
2015-02-13 13:40:30 +00:00
|
|
|
|
2015-04-24 14:58:13 +00:00
|
|
|
// Totals from all orders - including those refunded. Subtract refunded amounts.
|
2015-07-01 11:11:21 +00:00
|
|
|
$this->report_data->total_tax = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_tax' ) ) - $this->report_data->total_tax_refunded, 2 );
|
|
|
|
$this->report_data->total_shipping = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_shipping' ) ) - $this->report_data->total_shipping_refunded, 2 );
|
|
|
|
$this->report_data->total_shipping_tax = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_shipping_tax' ) ) - $this->report_data->total_shipping_tax_refunded, 2 );
|
2015-02-13 13:40:30 +00:00
|
|
|
|
2017-03-27 11:18:09 +00:00
|
|
|
// Total the refunds and sales amounts. Sales subract refunds. Note - total_sales also includes shipping costs.
|
2015-07-01 11:11:21 +00:00
|
|
|
$this->report_data->total_sales = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_sales' ) ) - $this->report_data->total_refunds, 2 );
|
2017-08-11 11:38:09 +00:00
|
|
|
$this->report_data->net_sales = wc_format_decimal( $this->report_data->total_sales - $this->report_data->total_shipping - max( 0, $this->report_data->total_tax ) - max( 0, $this->report_data->total_shipping_tax ), 2 );
|
2017-03-27 11:18:09 +00:00
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
// Calculate average based on net.
|
2015-10-02 08:42:48 +00:00
|
|
|
$this->report_data->average_sales = wc_format_decimal( $this->report_data->net_sales / ( $this->chart_interval + 1 ), 2 );
|
|
|
|
$this->report_data->average_total_sales = wc_format_decimal( $this->report_data->total_sales / ( $this->chart_interval + 1 ), 2 );
|
2015-04-24 14:58:13 +00:00
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
// Total orders and discounts also includes those which have been refunded at some point.
|
2015-07-30 11:52:52 +00:00
|
|
|
$this->report_data->total_coupons = number_format( array_sum( wp_list_pluck( $this->report_data->coupons, 'discount_amount' ) ), 2, '.', '' );
|
2015-07-01 11:11:21 +00:00
|
|
|
$this->report_data->total_refunded_orders = absint( count( $this->report_data->full_refunds ) );
|
2014-10-02 03:35:34 +00:00
|
|
|
|
2017-06-09 14:07:31 +00:00
|
|
|
// Total orders in this period, even if refunded.
|
2018-03-05 18:59:17 +00:00
|
|
|
$this->report_data->total_orders = absint( array_sum( wp_list_pluck( $this->report_data->order_counts, 'count' ) ) );
|
2017-06-09 14:07:31 +00:00
|
|
|
|
|
|
|
// Item items ordered in this period, even if refunded.
|
|
|
|
$this->report_data->total_items = absint( array_sum( wp_list_pluck( $this->report_data->order_items, 'order_item_count' ) ) );
|
2016-08-27 04:01:22 +00:00
|
|
|
|
2016-03-15 02:30:49 +00:00
|
|
|
// 3rd party filtering of report data
|
|
|
|
$this->report_data = apply_filters( 'woocommerce_admin_report_data', $this->report_data );
|
2015-02-13 13:40:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Get the legend for the main chart sidebar.
|
2018-03-05 18:59:17 +00:00
|
|
|
*
|
2015-02-13 13:40:30 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_chart_legend() {
|
2015-02-13 21:25:59 +00:00
|
|
|
$legend = array();
|
|
|
|
$data = $this->get_report_data();
|
2013-06-26 14:11:33 +00:00
|
|
|
|
|
|
|
switch ( $this->chart_groupby ) {
|
2018-03-05 18:59:17 +00:00
|
|
|
case 'day':
|
2016-10-29 12:57:09 +00:00
|
|
|
$average_total_sales_title = sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: average total sales */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s average gross daily sales', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->average_total_sales ) . '</strong>'
|
|
|
|
);
|
|
|
|
$average_sales_title = sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: average sales */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s average net daily sales', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->average_sales ) . '</strong>'
|
|
|
|
);
|
2018-03-05 18:59:17 +00:00
|
|
|
break;
|
|
|
|
case 'month':
|
|
|
|
default:
|
2016-10-29 12:57:09 +00:00
|
|
|
$average_total_sales_title = sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: average total sales */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s average gross monthly sales', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->average_total_sales ) . '</strong>'
|
|
|
|
);
|
|
|
|
$average_sales_title = sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: average sales */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s average net monthly sales', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->average_sales ) . '</strong>'
|
|
|
|
);
|
2018-03-05 18:59:17 +00:00
|
|
|
break;
|
2013-06-26 14:11:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: total sales */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s gross sales in this period', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->total_sales ) . '</strong>'
|
|
|
|
),
|
2015-02-13 13:40:30 +00:00
|
|
|
'placeholder' => __( 'This is the sum of the order totals after any refunds and including shipping and taxes.', 'woocommerce' ),
|
2016-12-20 11:07:31 +00:00
|
|
|
'color' => $this->chart_colours['sales_amount'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 6,
|
2013-06-26 14:11:33 +00:00
|
|
|
);
|
2015-10-02 08:42:48 +00:00
|
|
|
if ( $data->average_total_sales > 0 ) {
|
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => $average_total_sales_title,
|
|
|
|
'color' => $this->chart_colours['average'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 2,
|
2015-10-02 08:42:48 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-01-06 13:27:44 +00:00
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: net sales */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s net sales in this period', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->net_sales ) . '</strong>'
|
|
|
|
),
|
2015-02-18 17:19:10 +00:00
|
|
|
'placeholder' => __( 'This is the sum of the order totals after any refunds and excluding shipping and taxes.', 'woocommerce' ),
|
2016-12-20 11:07:31 +00:00
|
|
|
'color' => $this->chart_colours['net_sales_amount'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 7,
|
2015-01-06 13:27:44 +00:00
|
|
|
);
|
2015-04-24 14:58:13 +00:00
|
|
|
if ( $data->average_sales > 0 ) {
|
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => $average_sales_title,
|
|
|
|
'color' => $this->chart_colours['net_average'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 3,
|
2015-04-24 14:58:13 +00:00
|
|
|
);
|
|
|
|
}
|
2015-10-02 08:42:48 +00:00
|
|
|
|
2013-06-26 14:11:33 +00:00
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: total orders */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s orders placed', 'woocommerce' ),
|
|
|
|
'<strong>' . $data->total_orders . '</strong>'
|
|
|
|
),
|
2018-03-05 18:59:17 +00:00
|
|
|
'color' => $this->chart_colours['order_count'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 1,
|
2013-06-26 14:11:33 +00:00
|
|
|
);
|
2015-02-13 13:40:30 +00:00
|
|
|
|
2013-06-26 14:11:33 +00:00
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: total items */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s items purchased', 'woocommerce' ),
|
|
|
|
'<strong>' . $data->total_items . '</strong>'
|
|
|
|
),
|
2018-03-05 18:59:17 +00:00
|
|
|
'color' => $this->chart_colours['item_count'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 0,
|
2013-06-26 14:11:33 +00:00
|
|
|
);
|
2015-07-01 11:11:21 +00:00
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: 1: total refunds 2: total refunded orders 3: refunded items */
|
2016-10-24 07:31:07 +00:00
|
|
|
_n( '%1$s refunded %2$d order (%3$d item)', '%1$s refunded %2$d orders (%3$d items)', $this->report_data->total_refunded_orders, 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->total_refunds ) . '</strong>',
|
|
|
|
$this->report_data->total_refunded_orders,
|
|
|
|
$this->report_data->refunded_order_items
|
|
|
|
),
|
2018-03-05 18:59:17 +00:00
|
|
|
'color' => $this->chart_colours['refund_amount'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 8,
|
2015-07-01 11:11:21 +00:00
|
|
|
);
|
2014-10-06 12:39:49 +00:00
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: total shipping */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s charged for shipping', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->total_shipping ) . '</strong>'
|
|
|
|
),
|
2018-03-05 18:59:17 +00:00
|
|
|
'color' => $this->chart_colours['shipping_amount'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 5,
|
2014-10-06 12:39:49 +00:00
|
|
|
);
|
2013-06-28 16:33:37 +00:00
|
|
|
$legend[] = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'title' => sprintf(
|
2019-01-21 19:36:29 +00:00
|
|
|
/* translators: %s: total coupons */
|
2016-10-29 12:57:09 +00:00
|
|
|
__( '%s worth of coupons used', 'woocommerce' ),
|
|
|
|
'<strong>' . wc_price( $data->total_coupons ) . '</strong>'
|
|
|
|
),
|
2018-03-05 18:59:17 +00:00
|
|
|
'color' => $this->chart_colours['coupon_amount'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'highlight_series' => 4,
|
2013-06-28 16:33:37 +00:00
|
|
|
);
|
2013-06-26 14:11:33 +00:00
|
|
|
|
|
|
|
return $legend;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Output the report.
|
2013-06-26 14:11:33 +00:00
|
|
|
*/
|
|
|
|
public function output_report() {
|
|
|
|
$ranges = array(
|
2018-03-05 18:59:17 +00:00
|
|
|
'year' => __( 'Year', 'woocommerce' ),
|
|
|
|
'last_month' => __( 'Last month', 'woocommerce' ),
|
|
|
|
'month' => __( 'This month', 'woocommerce' ),
|
|
|
|
'7day' => __( 'Last 7 days', 'woocommerce' ),
|
2013-06-26 14:11:33 +00:00
|
|
|
);
|
|
|
|
|
2016-12-20 11:07:31 +00:00
|
|
|
$this->chart_colours = array(
|
2015-01-06 13:27:44 +00:00
|
|
|
'sales_amount' => '#b1d4ea',
|
|
|
|
'net_sales_amount' => '#3498db',
|
2015-10-02 08:42:48 +00:00
|
|
|
'average' => '#b1d4ea',
|
|
|
|
'net_average' => '#3498db',
|
2015-01-06 13:27:44 +00:00
|
|
|
'order_count' => '#dbe1e3',
|
|
|
|
'item_count' => '#ecf0f1',
|
|
|
|
'shipping_amount' => '#5cc488',
|
|
|
|
'coupon_amount' => '#f1c40f',
|
2016-08-27 01:46:45 +00:00
|
|
|
'refund_amount' => '#e74c3c',
|
2013-06-26 14:11:33 +00:00
|
|
|
);
|
|
|
|
|
2019-12-13 19:58:14 +00:00
|
|
|
$current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( wp_unslash( $_GET['range'] ) ) : '7day'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
2013-06-26 14:11:33 +00:00
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
if ( ! in_array( $current_range, array( 'custom', 'year', 'last_month', 'month', '7day' ), true ) ) {
|
2013-07-30 10:12:42 +00:00
|
|
|
$current_range = '7day';
|
2014-08-31 07:19:13 +00:00
|
|
|
}
|
2013-06-26 14:11:33 +00:00
|
|
|
|
2017-04-18 23:33:25 +00:00
|
|
|
$this->check_current_range_nonce( $current_range );
|
2013-07-30 10:12:42 +00:00
|
|
|
$this->calculate_current_range( $current_range );
|
2013-06-26 14:11:33 +00:00
|
|
|
|
2018-03-05 18:59:17 +00:00
|
|
|
include WC()->plugin_path() . '/includes/admin/views/html-report-by-date.php';
|
2013-06-26 14:11:33 +00:00
|
|
|
}
|
|
|
|
|
2013-07-18 11:56:12 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Output an export link.
|
2013-07-18 11:56:12 +00:00
|
|
|
*/
|
|
|
|
public function get_export_button() {
|
2019-12-13 19:58:14 +00:00
|
|
|
$current_range = ! empty( $_GET['range'] ) ? sanitize_text_field( wp_unslash( $_GET['range'] ) ) : '7day'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
2013-07-18 11:56:12 +00:00
|
|
|
?>
|
|
|
|
<a
|
|
|
|
href="#"
|
2019-01-21 19:36:29 +00:00
|
|
|
download="report-<?php echo esc_attr( $current_range ); ?>-<?php echo esc_attr( date_i18n( 'Y-m-d', current_time( 'timestamp' ) ) ); ?>.csv"
|
2013-07-18 11:56:12 +00:00
|
|
|
class="export_csv"
|
|
|
|
data-export="chart"
|
2015-08-05 18:08:15 +00:00
|
|
|
data-xaxes="<?php esc_attr_e( 'Date', 'woocommerce' ); ?>"
|
2013-07-18 11:56:12 +00:00
|
|
|
data-exclude_series="2"
|
2019-01-21 19:36:29 +00:00
|
|
|
data-groupby="<?php echo esc_attr( $this->chart_groupby ); ?>"
|
2013-07-18 11:56:12 +00:00
|
|
|
>
|
2019-01-21 19:36:29 +00:00
|
|
|
<?php esc_html_e( 'Export CSV', 'woocommerce' ); ?>
|
2013-07-18 11:56:12 +00:00
|
|
|
</a>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2015-02-20 12:27:55 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Round our totals correctly.
|
2017-05-15 11:50:52 +00:00
|
|
|
*
|
2019-01-21 19:36:29 +00:00
|
|
|
* @param array|string $amount Chart total.
|
2017-05-15 11:50:52 +00:00
|
|
|
*
|
|
|
|
* @return array|string
|
2015-02-20 12:27:55 +00:00
|
|
|
*/
|
|
|
|
private function round_chart_totals( $amount ) {
|
|
|
|
if ( is_array( $amount ) ) {
|
2015-05-05 12:55:56 +00:00
|
|
|
return array( $amount[0], wc_format_decimal( $amount[1], wc_get_price_decimals() ) );
|
2015-02-20 12:27:55 +00:00
|
|
|
} else {
|
|
|
|
return wc_format_decimal( $amount, wc_get_price_decimals() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-26 14:11:33 +00:00
|
|
|
/**
|
2015-11-03 12:28:01 +00:00
|
|
|
* Get the main chart.
|
2013-06-26 14:11:33 +00:00
|
|
|
*/
|
|
|
|
public function get_main_chart() {
|
|
|
|
global $wp_locale;
|
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
// Prepare data for report.
|
2016-03-15 02:30:49 +00:00
|
|
|
$data = array(
|
2017-04-18 19:29:10 +00:00
|
|
|
'order_counts' => $this->prepare_chart_data( $this->report_data->order_counts, 'post_date', 'count', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
|
|
|
'order_item_counts' => $this->prepare_chart_data( $this->report_data->order_items, 'post_date', 'order_item_count', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
|
|
|
'order_amounts' => $this->prepare_chart_data( $this->report_data->orders, 'post_date', 'total_sales', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
|
|
|
'coupon_amounts' => $this->prepare_chart_data( $this->report_data->coupons, 'post_date', 'discount_amount', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
|
|
|
'shipping_amounts' => $this->prepare_chart_data( $this->report_data->orders, 'post_date', 'total_shipping', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
|
|
|
'refund_amounts' => $this->prepare_chart_data( $this->report_data->refund_lines, 'post_date', 'total_refund', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
2019-01-21 19:44:53 +00:00
|
|
|
'net_refund_amounts' => $this->prepare_chart_data( $this->report_data->refunded_orders, 'post_date', 'net_refund', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
2016-03-15 02:30:49 +00:00
|
|
|
'shipping_tax_amounts' => $this->prepare_chart_data( $this->report_data->orders, 'post_date', 'total_shipping_tax', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
2017-04-18 19:29:10 +00:00
|
|
|
'tax_amounts' => $this->prepare_chart_data( $this->report_data->orders, 'post_date', 'total_tax', $this->chart_interval, $this->start_date, $this->chart_groupby ),
|
|
|
|
'net_order_amounts' => array(),
|
|
|
|
'gross_order_amounts' => array(),
|
2016-03-15 02:30:49 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach ( $data['order_amounts'] as $order_amount_key => $order_amount_value ) {
|
2018-03-05 18:59:17 +00:00
|
|
|
$data['gross_order_amounts'][ $order_amount_key ] = $order_amount_value;
|
2016-03-15 02:30:49 +00:00
|
|
|
$data['gross_order_amounts'][ $order_amount_key ][1] -= $data['refund_amounts'][ $order_amount_key ][1];
|
|
|
|
|
2018-03-05 18:59:17 +00:00
|
|
|
$data['net_order_amounts'][ $order_amount_key ] = $order_amount_value;
|
2019-01-21 19:36:29 +00:00
|
|
|
// Subtract the sum of the values from net order amounts.
|
2016-08-27 04:01:22 +00:00
|
|
|
$data['net_order_amounts'][ $order_amount_key ][1] -=
|
2019-01-21 19:44:53 +00:00
|
|
|
$data['net_refund_amounts'][ $order_amount_key ][1] +
|
2016-08-27 04:01:22 +00:00
|
|
|
$data['shipping_amounts'][ $order_amount_key ][1] +
|
|
|
|
$data['shipping_tax_amounts'][ $order_amount_key ][1] +
|
2016-03-15 02:30:49 +00:00
|
|
|
$data['tax_amounts'][ $order_amount_key ][1];
|
2015-01-06 13:27:44 +00:00
|
|
|
}
|
2014-10-02 03:35:34 +00:00
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
// 3rd party filtering of report data.
|
2016-03-15 02:30:49 +00:00
|
|
|
$data = apply_filters( 'woocommerce_admin_report_chart_data', $data );
|
2016-08-27 04:01:22 +00:00
|
|
|
|
2019-01-21 19:36:29 +00:00
|
|
|
// Encode in json format.
|
|
|
|
$chart_data = wp_json_encode(
|
2018-03-05 18:59:17 +00:00
|
|
|
array(
|
|
|
|
'order_counts' => array_values( $data['order_counts'] ),
|
|
|
|
'order_item_counts' => array_values( $data['order_item_counts'] ),
|
|
|
|
'order_amounts' => array_map( array( $this, 'round_chart_totals' ), array_values( $data['order_amounts'] ) ),
|
|
|
|
'gross_order_amounts' => array_map( array( $this, 'round_chart_totals' ), array_values( $data['gross_order_amounts'] ) ),
|
|
|
|
'net_order_amounts' => array_map( array( $this, 'round_chart_totals' ), array_values( $data['net_order_amounts'] ) ),
|
|
|
|
'shipping_amounts' => array_map( array( $this, 'round_chart_totals' ), array_values( $data['shipping_amounts'] ) ),
|
|
|
|
'coupon_amounts' => array_map( array( $this, 'round_chart_totals' ), array_values( $data['coupon_amounts'] ) ),
|
|
|
|
'refund_amounts' => array_map( array( $this, 'round_chart_totals' ), array_values( $data['refund_amounts'] ) ),
|
|
|
|
)
|
|
|
|
);
|
2013-06-26 14:11:33 +00:00
|
|
|
?>
|
|
|
|
<div class="chart-container">
|
|
|
|
<div class="chart-placeholder main"></div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
2013-07-18 11:56:12 +00:00
|
|
|
|
|
|
|
var main_chart;
|
|
|
|
|
2013-06-26 14:11:33 +00:00
|
|
|
jQuery(function(){
|
2019-02-20 12:00:47 +00:00
|
|
|
var order_data = JSON.parse( decodeURIComponent( '<?php echo rawurlencode( $chart_data ); ?>' ) );
|
2013-07-18 08:20:49 +00:00
|
|
|
var drawGraph = function( highlight ) {
|
|
|
|
var series = [
|
2013-06-26 14:11:33 +00:00
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Number of items sold', 'woocommerce' ) ); ?>",
|
2013-06-26 14:11:33 +00:00
|
|
|
data: order_data.order_item_counts,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['item_count'] ); ?>',
|
|
|
|
bars: { fillColor: '<?php echo esc_js( $this->chart_colours['item_count'] ); ?>', fill: true, show: true, lineWidth: 0, barWidth: <?php echo esc_js( $this->barwidth ); ?> * 0.5, align: 'center' },
|
2013-06-26 14:11:33 +00:00
|
|
|
shadowSize: 0,
|
|
|
|
hoverable: false
|
|
|
|
},
|
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Number of orders', 'woocommerce' ) ); ?>",
|
2013-06-26 14:11:33 +00:00
|
|
|
data: order_data.order_counts,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['order_count'] ); ?>',
|
|
|
|
bars: { fillColor: '<?php echo esc_js( $this->chart_colours['order_count'] ); ?>', fill: true, show: true, lineWidth: 0, barWidth: <?php echo esc_js( $this->barwidth ); ?> * 0.5, align: 'center' },
|
2013-06-26 14:11:33 +00:00
|
|
|
shadowSize: 0,
|
|
|
|
hoverable: false
|
|
|
|
},
|
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Average gross sales amount', 'woocommerce' ) ); ?>",
|
2019-01-21 19:36:29 +00:00
|
|
|
data: [ [ <?php echo esc_js( min( array_keys( $data['order_amounts'] ) ) ); ?>, <?php echo esc_js( $this->report_data->average_total_sales ); ?> ], [ <?php echo esc_js( max( array_keys( $data['order_amounts'] ) ) ); ?>, <?php echo esc_js( $this->report_data->average_total_sales ); ?> ] ],
|
2013-06-26 14:11:33 +00:00
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['average'] ); ?>',
|
2013-06-26 14:11:33 +00:00
|
|
|
points: { show: false },
|
2013-06-28 16:33:37 +00:00
|
|
|
lines: { show: true, lineWidth: 2, fill: false },
|
2015-10-02 08:42:48 +00:00
|
|
|
shadowSize: 0,
|
|
|
|
hoverable: false
|
|
|
|
},
|
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Average net sales amount', 'woocommerce' ) ); ?>",
|
2019-01-21 19:36:29 +00:00
|
|
|
data: [ [ <?php echo esc_js( min( array_keys( $data['order_amounts'] ) ) ); ?>, <?php echo esc_js( $this->report_data->average_sales ); ?> ], [ <?php echo esc_js( max( array_keys( $data['order_amounts'] ) ) ); ?>, <?php echo esc_js( $this->report_data->average_sales ); ?> ] ],
|
2015-10-02 08:42:48 +00:00
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['net_average'] ); ?>',
|
2015-10-02 08:42:48 +00:00
|
|
|
points: { show: false },
|
|
|
|
lines: { show: true, lineWidth: 2, fill: false },
|
2013-06-26 14:11:33 +00:00
|
|
|
shadowSize: 0,
|
|
|
|
hoverable: false
|
|
|
|
},
|
2013-06-28 16:33:37 +00:00
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Coupon amount', 'woocommerce' ) ); ?>",
|
2013-06-28 16:33:37 +00:00
|
|
|
data: order_data.coupon_amounts,
|
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['coupon_amount'] ); ?>',
|
2015-01-06 13:27:44 +00:00
|
|
|
points: { show: true, radius: 5, lineWidth: 2, fillColor: '#fff', fill: true },
|
|
|
|
lines: { show: true, lineWidth: 2, fill: false },
|
2013-06-28 16:33:37 +00:00
|
|
|
shadowSize: 0,
|
2019-01-21 19:36:29 +00:00
|
|
|
<?php echo $this->get_currency_tooltip(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>
|
2013-06-28 16:33:37 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Shipping amount', 'woocommerce' ) ); ?>",
|
2013-06-28 16:33:37 +00:00
|
|
|
data: order_data.shipping_amounts,
|
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['shipping_amount'] ); ?>',
|
2015-01-06 13:27:44 +00:00
|
|
|
points: { show: true, radius: 5, lineWidth: 2, fillColor: '#fff', fill: true },
|
|
|
|
lines: { show: true, lineWidth: 2, fill: false },
|
2013-06-28 16:33:37 +00:00
|
|
|
shadowSize: 0,
|
2019-01-21 19:36:29 +00:00
|
|
|
prepend_tooltip: "<?php echo get_woocommerce_currency_symbol(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>"
|
2013-06-28 16:33:37 +00:00
|
|
|
},
|
2013-06-26 14:11:33 +00:00
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Gross sales amount', 'woocommerce' ) ); ?>",
|
2015-10-02 09:08:41 +00:00
|
|
|
data: order_data.gross_order_amounts,
|
2013-06-26 14:11:33 +00:00
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['sales_amount'] ); ?>',
|
2015-01-06 13:27:44 +00:00
|
|
|
points: { show: true, radius: 5, lineWidth: 2, fillColor: '#fff', fill: true },
|
|
|
|
lines: { show: true, lineWidth: 2, fill: false },
|
|
|
|
shadowSize: 0,
|
2019-01-21 19:36:29 +00:00
|
|
|
<?php echo $this->get_currency_tooltip(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>
|
2015-01-06 13:27:44 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Net sales amount', 'woocommerce' ) ); ?>",
|
2015-01-06 13:27:44 +00:00
|
|
|
data: order_data.net_order_amounts,
|
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['net_sales_amount'] ); ?>',
|
2015-01-06 13:27:44 +00:00
|
|
|
points: { show: true, radius: 6, lineWidth: 4, fillColor: '#fff', fill: true },
|
|
|
|
lines: { show: true, lineWidth: 5, fill: false },
|
2013-06-26 14:11:33 +00:00
|
|
|
shadowSize: 0,
|
2019-01-21 19:36:29 +00:00
|
|
|
<?php echo $this->get_currency_tooltip(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>
|
2015-07-01 11:11:21 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-05 18:59:17 +00:00
|
|
|
label: "<?php echo esc_js( __( 'Refund amount', 'woocommerce' ) ); ?>",
|
2015-07-01 11:11:21 +00:00
|
|
|
data: order_data.refund_amounts,
|
|
|
|
yaxis: 2,
|
2019-01-21 19:36:29 +00:00
|
|
|
color: '<?php echo esc_js( $this->chart_colours['refund_amount'] ); ?>',
|
2015-07-01 11:11:21 +00:00
|
|
|
points: { show: true, radius: 5, lineWidth: 2, fillColor: '#fff', fill: true },
|
|
|
|
lines: { show: true, lineWidth: 2, fill: false },
|
|
|
|
shadowSize: 0,
|
2019-01-21 19:36:29 +00:00
|
|
|
prepend_tooltip: "<?php echo get_woocommerce_currency_symbol(); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?>"
|
2015-07-01 11:11:21 +00:00
|
|
|
},
|
2013-07-18 08:20:49 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
if ( highlight !== 'undefined' && series[ highlight ] ) {
|
|
|
|
highlight_series = series[ highlight ];
|
|
|
|
|
|
|
|
highlight_series.color = '#9c5d90';
|
|
|
|
|
2015-07-01 11:11:21 +00:00
|
|
|
if ( highlight_series.bars ) {
|
2013-07-18 08:20:49 +00:00
|
|
|
highlight_series.bars.fillColor = '#9c5d90';
|
2015-07-01 11:11:21 +00:00
|
|
|
}
|
2013-07-18 08:20:49 +00:00
|
|
|
|
|
|
|
if ( highlight_series.lines ) {
|
|
|
|
highlight_series.lines.lineWidth = 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-18 11:56:12 +00:00
|
|
|
main_chart = jQuery.plot(
|
2013-07-18 08:20:49 +00:00
|
|
|
jQuery('.chart-placeholder.main'),
|
|
|
|
series,
|
|
|
|
{
|
|
|
|
legend: {
|
|
|
|
show: false
|
|
|
|
},
|
2014-08-31 07:19:13 +00:00
|
|
|
grid: {
|
|
|
|
color: '#aaa',
|
|
|
|
borderColor: 'transparent',
|
|
|
|
borderWidth: 0,
|
|
|
|
hoverable: true
|
|
|
|
},
|
|
|
|
xaxes: [ {
|
|
|
|
color: '#aaa',
|
|
|
|
position: "bottom",
|
|
|
|
tickColor: 'transparent',
|
2013-07-18 08:20:49 +00:00
|
|
|
mode: "time",
|
2016-09-09 00:14:28 +00:00
|
|
|
timeformat: "<?php echo ( 'day' === $this->chart_groupby ) ? '%d %b' : '%b'; ?>",
|
2019-02-20 12:00:47 +00:00
|
|
|
monthNames: JSON.parse( decodeURIComponent( '<?php echo rawurlencode( wp_json_encode( array_values( $wp_locale->month_abbrev ) ) ); ?>' ) ),
|
2013-07-18 08:20:49 +00:00
|
|
|
tickLength: 1,
|
2019-01-21 19:36:29 +00:00
|
|
|
minTickSize: [1, "<?php echo esc_js( $this->chart_groupby ); ?>"],
|
2013-07-18 08:20:49 +00:00
|
|
|
font: {
|
2014-08-31 07:19:13 +00:00
|
|
|
color: "#aaa"
|
|
|
|
}
|
2013-07-18 08:20:49 +00:00
|
|
|
} ],
|
2014-08-31 07:19:13 +00:00
|
|
|
yaxes: [
|
|
|
|
{
|
|
|
|
min: 0,
|
|
|
|
minTickSize: 1,
|
|
|
|
tickDecimals: 0,
|
|
|
|
color: '#d4d9dc',
|
|
|
|
font: { color: "#aaa" }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
position: "right",
|
|
|
|
min: 0,
|
|
|
|
tickDecimals: 2,
|
|
|
|
alignTicksWithAxis: 1,
|
|
|
|
color: 'transparent',
|
|
|
|
font: { color: "#aaa" }
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
);
|
2013-07-18 08:20:49 +00:00
|
|
|
|
2021-02-04 20:31:28 +00:00
|
|
|
jQuery('.chart-placeholder').trigger( 'resize' );
|
2013-07-18 08:20:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
drawGraph();
|
2013-06-26 14:11:33 +00:00
|
|
|
|
2021-02-18 14:35:24 +00:00
|
|
|
jQuery('.highlight_series').on( 'mouseenter',
|
2013-07-18 08:20:49 +00:00
|
|
|
function() {
|
|
|
|
drawGraph( jQuery(this).data('series') );
|
2021-02-18 14:35:24 +00:00
|
|
|
} ).on( 'mouseleave',
|
2013-07-18 08:20:49 +00:00
|
|
|
function() {
|
|
|
|
drawGraph();
|
|
|
|
}
|
|
|
|
);
|
2013-06-26 14:11:33 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
2016-09-07 08:31:17 +00:00
|
|
|
}
|