2014-07-08 14:32:47 +00:00
|
|
|
<?php
|
2015-11-06 09:22:19 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
2016-06-21 19:06:56 +00:00
|
|
|
exit;
|
2015-11-06 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-08 14:32:47 +00:00
|
|
|
/**
|
2016-06-21 19:06:56 +00:00
|
|
|
* Order refund. Refunds are based on orders (essentially negative orders) and
|
|
|
|
* contain much of the same data.
|
2014-07-08 14:32:47 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @version 3.0.0
|
2014-07-08 14:32:47 +00:00
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @category Class
|
|
|
|
* @author WooThemes
|
|
|
|
*/
|
|
|
|
class WC_Order_Refund extends WC_Abstract_Order {
|
|
|
|
|
2016-11-17 16:53:13 +00:00
|
|
|
/**
|
|
|
|
* Which data store to load.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $data_store_name = 'order-refund';
|
|
|
|
|
2016-12-19 17:09:52 +00:00
|
|
|
/**
|
|
|
|
* This is the name of this object type.
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $object_type = 'order_refund';
|
|
|
|
|
2016-11-21 14:20:29 +00:00
|
|
|
/**
|
|
|
|
* Stores product data.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $extra_data = array(
|
|
|
|
'amount' => '',
|
|
|
|
'reason' => '',
|
|
|
|
'refunded_by' => 0,
|
|
|
|
);
|
|
|
|
|
2014-07-08 18:22:58 +00:00
|
|
|
/**
|
2016-11-17 16:53:13 +00:00
|
|
|
* Get internal type (post type.)
|
|
|
|
* @return string
|
2016-09-07 09:04:56 +00:00
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function get_type() {
|
|
|
|
return 'shop_order_refund';
|
2016-09-07 09:04:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 12:04:57 +00:00
|
|
|
/**
|
|
|
|
* Get status - always completed for refunds.
|
2016-11-17 16:53:13 +00:00
|
|
|
*
|
|
|
|
* @param string $context
|
2016-08-22 12:04:57 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function get_status( $context = 'view' ) {
|
2016-08-22 12:04:57 +00:00
|
|
|
return 'completed';
|
|
|
|
}
|
|
|
|
|
2016-06-21 19:06:56 +00:00
|
|
|
/**
|
|
|
|
* Get a title for the new post type.
|
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function get_post_title() {
|
2016-09-01 20:50:14 +00:00
|
|
|
// @codingStandardsIgnoreStart
|
2016-06-21 19:06:56 +00:00
|
|
|
return sprintf( __( 'Refund – %s', 'woocommerce' ), strftime( _x( '%b %d, %Y @ %I:%M %p', 'Order date parsed by strftime', 'woocommerce' ) ) );
|
2016-09-01 20:50:14 +00:00
|
|
|
// @codingStandardsIgnoreEnd
|
2016-06-21 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-17 16:53:13 +00:00
|
|
|
* Get refunded amount.
|
|
|
|
*
|
|
|
|
* @param string $context
|
|
|
|
* @return int|float
|
2014-07-08 18:22:58 +00:00
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function get_amount( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'amount', $context );
|
2014-07-08 18:22:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-17 16:53:13 +00:00
|
|
|
* Get refund reason.
|
|
|
|
*
|
|
|
|
* @since 2.2
|
|
|
|
* @param string $context
|
2014-07-08 18:22:58 +00:00
|
|
|
* @return int|float
|
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function get_reason( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'reason', $context );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get ID of user who did the refund.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0
|
2016-11-17 16:53:13 +00:00
|
|
|
* @param string $context
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function get_refunded_by( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'refunded_by', $context );
|
|
|
|
|
2014-07-08 18:22:58 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 14:35:54 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Get formatted refunded amount.
|
2016-11-17 16:53:13 +00:00
|
|
|
*
|
2015-06-17 14:35:54 +00:00
|
|
|
* @since 2.4
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_formatted_refund_amount() {
|
2016-08-22 12:04:57 +00:00
|
|
|
return apply_filters( 'woocommerce_formatted_refund_amount', wc_price( $this->get_amount(), array( 'currency' => $this->get_currency() ) ), $this );
|
2015-06-17 14:35:54 +00:00
|
|
|
}
|
2015-07-16 19:55:48 +00:00
|
|
|
|
2016-06-21 19:06:56 +00:00
|
|
|
/**
|
2016-11-17 16:53:13 +00:00
|
|
|
* Set refunded amount.
|
|
|
|
*
|
2016-06-21 19:06:56 +00:00
|
|
|
* @param string $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:06:56 +00:00
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function set_amount( $value ) {
|
|
|
|
$this->set_prop( 'amount', wc_format_decimal( $value ) );
|
2016-06-21 19:06:56 +00:00
|
|
|
}
|
2015-06-17 14:35:54 +00:00
|
|
|
|
2014-07-08 18:22:58 +00:00
|
|
|
/**
|
2016-11-17 16:53:13 +00:00
|
|
|
* Set refund reason.
|
|
|
|
*
|
|
|
|
* @param string $value
|
|
|
|
* @throws WC_Data_Exception
|
2014-07-08 18:22:58 +00:00
|
|
|
*/
|
2016-11-17 16:53:13 +00:00
|
|
|
public function set_reason( $value ) {
|
|
|
|
$this->set_prop( 'reason', $value );
|
2016-06-21 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set refunded by.
|
2016-11-17 16:53:13 +00:00
|
|
|
*
|
2016-06-21 19:06:56 +00:00
|
|
|
* @param int $value
|
2016-08-24 09:46:29 +00:00
|
|
|
* @throws WC_Data_Exception
|
2016-06-21 19:06:56 +00:00
|
|
|
*/
|
|
|
|
public function set_refunded_by( $value ) {
|
2016-11-17 16:53:13 +00:00
|
|
|
$this->set_prop( 'refunded_by', absint( $value ) );
|
2016-06-21 19:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-06-22 15:31:05 +00:00
|
|
|
* Magic __get method for backwards compatibility.
|
2016-11-17 16:53:13 +00:00
|
|
|
*
|
2016-06-22 15:31:05 +00:00
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function __get( $key ) {
|
2017-03-15 16:36:53 +00:00
|
|
|
wc_doing_it_wrong( $key, 'Refund properties should not be accessed directly.', '3.0' );
|
2016-06-22 15:31:05 +00:00
|
|
|
/**
|
|
|
|
* Maps legacy vars to new getters.
|
|
|
|
*/
|
|
|
|
if ( 'reason' === $key ) {
|
2016-08-22 12:04:57 +00:00
|
|
|
return $this->get_reason();
|
2016-06-21 19:06:56 +00:00
|
|
|
} elseif ( 'refund_amount' === $key ) {
|
2016-08-22 12:04:57 +00:00
|
|
|
return $this->get_amount();
|
2016-06-21 19:06:56 +00:00
|
|
|
}
|
|
|
|
return parent::__get( $key );
|
2014-07-08 14:32:47 +00:00
|
|
|
}
|
2016-06-21 19:06:56 +00:00
|
|
|
|
|
|
|
/**
|
2016-06-22 15:31:05 +00:00
|
|
|
* Gets an refund from the database.
|
2017-03-15 16:36:53 +00:00
|
|
|
* @deprecated 3.0
|
2016-06-22 15:31:05 +00:00
|
|
|
* @param int $id (default: 0).
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function get_refund( $id = 0 ) {
|
2017-03-15 16:36:53 +00:00
|
|
|
wc_deprecated_function( 'get_refund', '3.0', 'read' );
|
2016-06-22 15:31:05 +00:00
|
|
|
if ( ! $id ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ( $result = get_post( $id ) ) {
|
|
|
|
$this->populate( $result );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-08-22 12:04:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get refund amount.
|
2017-03-15 16:36:53 +00:00
|
|
|
* @deprecated 3.0
|
2016-08-22 12:04:57 +00:00
|
|
|
* @return int|float
|
|
|
|
*/
|
|
|
|
public function get_refund_amount() {
|
2017-03-15 16:36:53 +00:00
|
|
|
wc_deprecated_function( 'get_refund_amount', '3.0', 'get_amount' );
|
2016-08-22 12:04:57 +00:00
|
|
|
return $this->get_amount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get refund reason.
|
2017-03-15 16:36:53 +00:00
|
|
|
* @deprecated 3.0
|
2016-08-22 12:04:57 +00:00
|
|
|
* @return int|float
|
|
|
|
*/
|
|
|
|
public function get_refund_reason() {
|
2017-03-15 16:36:53 +00:00
|
|
|
wc_deprecated_function( 'get_refund_reason', '3.0', 'get_reason' );
|
2016-08-22 12:04:57 +00:00
|
|
|
return $this->get_reason();
|
|
|
|
}
|
2014-07-08 14:32:47 +00:00
|
|
|
}
|