2011-08-09 15:16:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Order
|
2012-08-08 08:21:27 +00:00
|
|
|
*
|
2014-07-08 18:23:22 +00:00
|
|
|
* @class WC_Order
|
|
|
|
* @version 2.2.0
|
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @category Class
|
|
|
|
* @author WooThemes
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2014-06-13 13:35:53 +00:00
|
|
|
class WC_Order extends WC_Abstract_Order {
|
2014-07-08 18:23:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get order refunds
|
|
|
|
*
|
|
|
|
* @since 2.2
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_refunds() {
|
2014-07-25 15:48:19 +00:00
|
|
|
if ( empty( $this->refunds ) && ! is_array( $this->refunds ) ) {
|
|
|
|
$refunds = array();
|
|
|
|
$refund_items = get_posts(
|
|
|
|
array(
|
|
|
|
'post_type' => 'shop_order_refund',
|
|
|
|
'post_parent' => $this->id,
|
|
|
|
'posts_per_page' => -1,
|
|
|
|
'post_status' => 'any',
|
|
|
|
'fields' => 'ids'
|
|
|
|
)
|
|
|
|
);
|
2014-07-08 18:23:22 +00:00
|
|
|
|
2014-07-25 15:48:19 +00:00
|
|
|
foreach ( $refund_items as $refund_id ) {
|
|
|
|
$refunds[] = new WC_Order_Refund( $refund_id );
|
|
|
|
}
|
2014-07-08 18:23:22 +00:00
|
|
|
|
2014-07-25 15:48:19 +00:00
|
|
|
$this->refunds = $refunds;
|
|
|
|
}
|
|
|
|
return $this->refunds;
|
2014-07-08 18:23:22 +00:00
|
|
|
}
|
2014-07-08 19:59:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get amount already refunded
|
|
|
|
*
|
|
|
|
* @since 2.2
|
|
|
|
* @return int|float
|
|
|
|
*/
|
|
|
|
public function get_total_refunded() {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$total = $wpdb->get_var( $wpdb->prepare( "
|
|
|
|
SELECT SUM( postmeta.meta_value )
|
|
|
|
FROM $wpdb->postmeta AS postmeta
|
2014-07-11 11:43:42 +00:00
|
|
|
INNER JOIN $wpdb->posts AS posts ON ( posts.post_type = 'shop_order_refund' AND posts.post_parent = %d )
|
2014-07-08 19:59:38 +00:00
|
|
|
WHERE postmeta.meta_key = '_refund_amount'
|
2014-07-21 02:48:23 +00:00
|
|
|
AND postmeta.post_id = posts.ID
|
2014-07-08 19:59:38 +00:00
|
|
|
", $this->id ) );
|
|
|
|
|
|
|
|
return $total;
|
|
|
|
}
|
2014-07-25 15:48:19 +00:00
|
|
|
|
2015-01-29 20:50:08 +00:00
|
|
|
/**
|
|
|
|
* Get the total tax refunded
|
|
|
|
*
|
|
|
|
* @since 2.3
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function get_total_tax_refunded() {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$total = $wpdb->get_var( $wpdb->prepare( "
|
|
|
|
SELECT SUM( order_itemmeta.meta_value )
|
|
|
|
FROM {$wpdb->prefix}woocommerce_order_itemmeta AS order_itemmeta
|
|
|
|
INNER JOIN $wpdb->posts AS posts ON ( posts.post_type = 'shop_order_refund' AND posts.post_parent = %d )
|
|
|
|
INNER JOIN {$wpdb->prefix}woocommerce_order_items AS order_items ON ( order_items.order_id = posts.ID AND order_items.order_item_type = 'tax' )
|
|
|
|
WHERE order_itemmeta.order_item_id = order_items.order_item_id
|
|
|
|
AND order_itemmeta.meta_key IN ('tax_amount', 'shipping_tax_amount')
|
|
|
|
", $this->id ) );
|
|
|
|
|
|
|
|
return abs( $total );
|
|
|
|
}
|
|
|
|
|
2014-07-25 15:48:19 +00:00
|
|
|
/**
|
|
|
|
* Get the refunded amount for a line item
|
2014-09-20 18:54:33 +00:00
|
|
|
*
|
2014-07-25 15:48:19 +00:00
|
|
|
* @param int $item_id ID of the item we're checking
|
|
|
|
* @param string $item_type type of the item we're checking, if not a line_item
|
2014-09-07 23:37:55 +00:00
|
|
|
* @return integer
|
2014-07-25 15:48:19 +00:00
|
|
|
*/
|
|
|
|
public function get_qty_refunded_for_item( $item_id, $item_type = 'line_item' ) {
|
|
|
|
$qty = 0;
|
|
|
|
foreach ( $this->get_refunds() as $refund ) {
|
|
|
|
foreach ( $refund->get_items( $item_type ) as $refunded_item ) {
|
|
|
|
if ( isset( $refunded_item['refunded_item_id'] ) && $refunded_item['refunded_item_id'] == $item_id ) {
|
|
|
|
$qty += $refunded_item['qty'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $qty;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the refunded amount for a line item
|
2014-09-20 18:54:33 +00:00
|
|
|
*
|
2014-07-25 15:48:19 +00:00
|
|
|
* @param int $item_id ID of the item we're checking
|
|
|
|
* @param string $item_type type of the item we're checking, if not a line_item
|
2014-09-07 23:37:55 +00:00
|
|
|
* @return integer
|
2014-07-25 15:48:19 +00:00
|
|
|
*/
|
|
|
|
public function get_total_refunded_for_item( $item_id, $item_type = 'line_item' ) {
|
|
|
|
$total = 0;
|
|
|
|
foreach ( $this->get_refunds() as $refund ) {
|
|
|
|
foreach ( $refund->get_items( $item_type ) as $refunded_item ) {
|
|
|
|
if ( isset( $refunded_item['refunded_item_id'] ) && $refunded_item['refunded_item_id'] == $item_id ) {
|
|
|
|
switch ( $item_type ) {
|
|
|
|
case 'shipping' :
|
|
|
|
$total += $refunded_item['cost'];
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
$total += $refunded_item['line_total'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $total * -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the refunded amount for a line item
|
2014-09-20 18:54:33 +00:00
|
|
|
*
|
2014-07-25 15:48:19 +00:00
|
|
|
* @param int $item_id ID of the item we're checking
|
|
|
|
* @param int $tax_id ID of the tax we're checking
|
|
|
|
* @param string $item_type type of the item we're checking, if not a line_item
|
2014-09-07 23:37:55 +00:00
|
|
|
* @return integer
|
2014-07-25 15:48:19 +00:00
|
|
|
*/
|
|
|
|
public function get_tax_refunded_for_item( $item_id, $tax_id, $item_type = 'line_item' ) {
|
|
|
|
$total = 0;
|
|
|
|
foreach ( $this->get_refunds() as $refund ) {
|
|
|
|
foreach ( $refund->get_items( $item_type ) as $refunded_item ) {
|
|
|
|
if ( isset( $refunded_item['refunded_item_id'] ) && $refunded_item['refunded_item_id'] == $item_id ) {
|
|
|
|
switch ( $item_type ) {
|
|
|
|
case 'shipping' :
|
|
|
|
$tax_data = maybe_unserialize( $refunded_item['taxes'] );
|
|
|
|
if ( isset( $tax_data[ $tax_id ] ) ) {
|
|
|
|
$total += $tax_data[ $tax_id ];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
$tax_data = maybe_unserialize( $refunded_item['line_tax_data'] );
|
|
|
|
if ( isset( $tax_data['total'][ $tax_id ] ) ) {
|
|
|
|
$total += $tax_data['total'][ $tax_id ];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $total * -1;
|
2014-09-20 18:54:33 +00:00
|
|
|
}
|
2015-01-29 20:50:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get total tax refunded by rate ID.
|
|
|
|
*
|
|
|
|
* @param int $rate_id
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function get_total_tax_refunded_by_rate_id( $rate_id ) {
|
|
|
|
$total = 0;
|
|
|
|
foreach ( $this->get_refunds() as $refund ) {
|
|
|
|
foreach ( $refund->get_items( 'tax' ) as $refunded_item ) {
|
|
|
|
if ( isset( $refunded_item['rate_id'] ) && $refunded_item['rate_id'] == $rate_id ) {
|
|
|
|
$total += abs( $refunded_item['tax_amount'] ) + abs( $refunded_item['shipping_tax_amount'] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $total;
|
|
|
|
}
|
2014-07-08 18:23:22 +00:00
|
|
|
}
|