2016-02-17 19:29:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Orders controller
|
|
|
|
*
|
|
|
|
* Handles requests to the /orders endpoint.
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category API
|
|
|
|
* @package WooCommerce/API
|
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Orders controller class.
|
|
|
|
*
|
|
|
|
* @package WooCommerce/API
|
2017-02-16 02:22:15 +00:00
|
|
|
* @extends WC_REST_Orders_V1_Controller
|
2016-02-17 19:29:09 +00:00
|
|
|
*/
|
2017-02-16 02:22:15 +00:00
|
|
|
class WC_REST_Orders_Controller extends WC_REST_Orders_V1_Controller {
|
2016-02-17 19:29:09 +00:00
|
|
|
|
2016-03-07 18:36:17 +00:00
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-02-09 17:06:13 +00:00
|
|
|
protected $namespace = 'wc/v2';
|
2016-03-07 18:36:17 +00:00
|
|
|
|
2016-08-16 12:55:10 +00:00
|
|
|
/**
|
|
|
|
* Stores the request.
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $request = array();
|
|
|
|
|
2016-08-15 16:27:33 +00:00
|
|
|
/**
|
|
|
|
* Expands an order item to get its data.
|
2016-08-18 12:30:10 +00:00
|
|
|
* @param WC_Order_item $item
|
2016-08-15 16:27:33 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function get_order_item_data( $item ) {
|
|
|
|
$data = $item->get_data();
|
|
|
|
$format_decimal = array( 'subtotal', 'subtotal_tax', 'total', 'total_tax', 'tax_total', 'shipping_tax_total' );
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format decimal values.
|
2016-08-15 16:27:33 +00:00
|
|
|
foreach ( $format_decimal as $key ) {
|
|
|
|
if ( isset( $data[ $key ] ) ) {
|
2016-08-16 14:18:16 +00:00
|
|
|
$data[ $key ] = wc_format_decimal( $data[ $key ], $this->request['dp'] );
|
2016-08-15 16:27:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Add meta, SKU and PRICE to products.
|
2016-08-17 10:44:39 +00:00
|
|
|
if ( is_callable( array( $item, 'get_product' ) ) ) {
|
|
|
|
$data['sku'] = $item->get_product() ? $item->get_product()->get_sku(): null;
|
|
|
|
$data['price'] = $item->get_total() / max( 1, $item->get_quantity() );
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format meta data.
|
2016-08-17 10:44:39 +00:00
|
|
|
if ( isset( $data['meta_data'] ) ) {
|
|
|
|
$hideprefix = 'true' === $this->request['all_item_meta'] ? null : '_';
|
|
|
|
$item_meta = $item->get_formatted_meta_data( $hideprefix );
|
|
|
|
|
|
|
|
foreach ( $item_meta as $key => $values ) {
|
2016-08-18 12:30:10 +00:00
|
|
|
// Label was used in previous version of API - set it here.
|
2016-08-17 10:44:39 +00:00
|
|
|
$item_meta[ $key ]->label = $values->display_key;
|
|
|
|
unset( $item_meta[ $key ]->display_key );
|
|
|
|
unset( $item_meta[ $key ]->display_value );
|
|
|
|
}
|
2016-08-16 12:55:10 +00:00
|
|
|
|
2016-08-17 10:44:39 +00:00
|
|
|
$data['meta'] = array_values( $item_meta );
|
|
|
|
}
|
2016-08-16 12:55:10 +00:00
|
|
|
}
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format taxes.
|
2016-08-16 13:49:30 +00:00
|
|
|
if ( ! empty( $data['taxes']['total'] ) ) {
|
|
|
|
$taxes = array();
|
|
|
|
|
|
|
|
foreach ( $data['taxes']['total'] as $tax_rate_id => $tax ) {
|
|
|
|
$taxes[] = array(
|
|
|
|
'id' => $tax_rate_id,
|
|
|
|
'total' => $tax,
|
|
|
|
'subtotal' => isset( $data['taxes']['subtotal'][ $tax_rate_id ] ) ? $data['taxes']['subtotal'][ $tax_rate_id ] : '',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$data['taxes'] = $taxes;
|
2016-08-17 10:44:39 +00:00
|
|
|
} elseif ( isset( $data['taxes'] ) ) {
|
2016-08-16 14:18:16 +00:00
|
|
|
$data['taxes'] = array();
|
2016-08-16 13:49:30 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 14:18:16 +00:00
|
|
|
// Remove props we don't want to expose.
|
|
|
|
unset( $data['order_id'] );
|
|
|
|
unset( $data['type'] );
|
|
|
|
|
2016-08-15 16:27:33 +00:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2016-03-23 11:30:58 +00:00
|
|
|
/**
|
2016-03-28 19:41:17 +00:00
|
|
|
* Prepare a single order output for response.
|
2016-03-23 22:19:08 +00:00
|
|
|
*
|
|
|
|
* @param WP_Post $post Post object.
|
|
|
|
* @param WP_REST_Request $request Request object.
|
|
|
|
* @return WP_REST_Response $data
|
|
|
|
*/
|
|
|
|
public function prepare_item_for_response( $post, $request ) {
|
2016-08-16 12:55:10 +00:00
|
|
|
$this->request = $request;
|
2016-08-15 16:27:33 +00:00
|
|
|
$statuses = wc_get_order_statuses();
|
|
|
|
$order = wc_get_order( $post );
|
2016-09-09 12:34:49 +00:00
|
|
|
$data = array_merge( array( 'id' => $order->get_id() ), $order->get_data() );
|
2016-08-16 14:18:16 +00:00
|
|
|
$format_decimal = array( 'discount_total', 'discount_tax', 'shipping_total', 'shipping_tax', 'shipping_total', 'shipping_tax', 'cart_tax', 'total', 'total_tax' );
|
2016-12-08 11:19:32 +00:00
|
|
|
$format_date = array( 'date_created', 'date_modified', 'date_completed', 'date_paid' );
|
2016-08-16 14:18:16 +00:00
|
|
|
$format_line_items = array( 'line_items', 'tax_lines', 'shipping_lines', 'fee_lines', 'coupon_lines' );
|
2016-08-15 16:27:33 +00:00
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format decimal values.
|
2016-08-15 16:27:33 +00:00
|
|
|
foreach ( $format_decimal as $key ) {
|
2016-08-16 14:18:16 +00:00
|
|
|
$data[ $key ] = wc_format_decimal( $data[ $key ], $this->request['dp'] );
|
2016-08-15 16:27:33 +00:00
|
|
|
}
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format date values.
|
2016-08-15 16:27:33 +00:00
|
|
|
foreach ( $format_date as $key ) {
|
|
|
|
$data[ $key ] = $data[ $key ] ? wc_rest_prepare_date_response( get_gmt_from_date( date( 'Y-m-d H:i:s', $data[ $key ] ) ) ) : false;
|
|
|
|
}
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format the order status.
|
2016-08-15 16:27:33 +00:00
|
|
|
$data['status'] = 'wc-' === substr( $data['status'], 0, 3 ) ? substr( $data['status'], 3 ) : $data['status'];
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Format line items.
|
2016-08-15 16:27:33 +00:00
|
|
|
foreach ( $format_line_items as $key ) {
|
2016-08-16 13:49:30 +00:00
|
|
|
$data[ $key ] = array_values( array_map( array( $this, 'get_order_item_data' ), $data[ $key ] ) );
|
2016-08-15 16:27:33 +00:00
|
|
|
}
|
|
|
|
|
2016-08-18 12:30:10 +00:00
|
|
|
// Refunds.
|
2016-12-08 18:59:07 +00:00
|
|
|
$data['refunds'] = array();
|
2016-08-16 12:55:10 +00:00
|
|
|
foreach ( $order->get_refunds() as $refund ) {
|
|
|
|
$data['refunds'][] = array(
|
2016-08-22 12:04:57 +00:00
|
|
|
'id' => $refund->get_id(),
|
|
|
|
'refund' => $refund->get_reason() ? $refund->get_reason() : '',
|
|
|
|
'total' => '-' . wc_format_decimal( $refund->get_amount(), $this->request['dp'] ),
|
2016-06-02 19:05:08 +00:00
|
|
|
);
|
|
|
|
}
|
2016-08-15 16:27:33 +00:00
|
|
|
|
|
|
|
$context = ! empty( $request['context'] ) ? $request['context'] : 'view';
|
|
|
|
$data = $this->add_additional_fields_to_object( $data, $request );
|
|
|
|
$data = $this->filter_response_by_context( $data, $context );
|
|
|
|
$response = rest_ensure_response( $data );
|
2016-09-29 16:24:01 +00:00
|
|
|
$response->add_links( $this->prepare_links( $order, $request ) );
|
2016-03-23 22:19:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter the data for a response.
|
|
|
|
*
|
|
|
|
* The dynamic portion of the hook name, $this->post_type, refers to post_type of the post being
|
|
|
|
* prepared for the response.
|
|
|
|
*
|
|
|
|
* @param WP_REST_Response $response The response object.
|
|
|
|
* @param WP_Post $post Post object.
|
|
|
|
* @param WP_REST_Request $request Request object.
|
|
|
|
*/
|
|
|
|
return apply_filters( "woocommerce_rest_prepare_{$this->post_type}", $response, $post, $request );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Order's schema, conforming to JSON Schema.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_item_schema() {
|
2016-03-23 11:30:58 +00:00
|
|
|
$schema = array(
|
|
|
|
'$schema' => 'http://json-schema.org/draft-04/schema#',
|
|
|
|
'title' => $this->post_type,
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Unique identifier for the resource.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'parent_id' => array(
|
|
|
|
'description' => __( 'Parent order ID.', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-03-23 12:46:34 +00:00
|
|
|
),
|
|
|
|
'status' => array(
|
|
|
|
'description' => __( 'Order status.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'pending',
|
2016-03-23 22:19:08 +00:00
|
|
|
'enum' => $this->get_order_statuses(),
|
2016-03-23 12:46:34 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
'order_key' => array(
|
|
|
|
'description' => __( 'Order key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'currency' => array(
|
|
|
|
'description' => __( 'Currency the order was created with, in ISO format.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
2016-03-24 20:43:14 +00:00
|
|
|
'default' => get_woocommerce_currency(),
|
2016-03-23 12:46:34 +00:00
|
|
|
'enum' => array_keys( get_woocommerce_currencies() ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'version' => array(
|
|
|
|
'description' => __( 'Version of WooCommerce when the order was made.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'prices_include_tax' => array(
|
2016-08-17 10:44:39 +00:00
|
|
|
'description' => __( 'True the prices included tax during checkout.', 'woocommerce' ),
|
2016-03-23 12:46:34 +00:00
|
|
|
'type' => 'boolean',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'date_created' => array(
|
|
|
|
'description' => __( "The date the order was created, in the site's timezone.", 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2017-02-16 02:22:15 +00:00
|
|
|
'readonly' => true,
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'date_modified' => array(
|
|
|
|
'description' => __( "The date the order was last modified, in the site's timezone.", 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'customer_id' => array(
|
|
|
|
'description' => __( 'User ID who owns the order. 0 for guests.', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'integer',
|
2016-03-23 12:46:34 +00:00
|
|
|
'default' => 0,
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'discount_total' => array(
|
|
|
|
'description' => __( 'Total discount amount for the order.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'discount_tax' => array(
|
|
|
|
'description' => __( 'Total discount tax amount for the order.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'shipping_total' => array(
|
|
|
|
'description' => __( 'Total shipping amount for the order.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'shipping_tax' => array(
|
2016-03-23 12:46:34 +00:00
|
|
|
'description' => __( 'Total shipping tax amount for the order.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'cart_tax' => array(
|
|
|
|
'description' => __( 'Sum of line item taxes only.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Grand total.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'total_tax' => array(
|
|
|
|
'description' => __( 'Sum of all taxes.', 'woocommerce' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'billing' => array(
|
2016-03-23 11:30:58 +00:00
|
|
|
'description' => __( 'Billing address.', 'woocommerce' ),
|
2016-12-07 11:36:46 +00:00
|
|
|
'type' => 'object',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'properties' => array(
|
|
|
|
'first_name' => array(
|
|
|
|
'description' => __( 'First name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'last_name' => array(
|
|
|
|
'description' => __( 'Last name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'company' => array(
|
|
|
|
'description' => __( 'Company name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'address_1' => array(
|
2016-10-11 01:39:13 +00:00
|
|
|
'description' => __( 'Address 1', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'address_2' => array(
|
2016-10-11 01:39:13 +00:00
|
|
|
'description' => __( 'Address 2', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'city' => array(
|
|
|
|
'description' => __( 'City name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'state' => array(
|
|
|
|
'description' => __( 'ISO code or name of the state, province or district.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'postcode' => array(
|
|
|
|
'description' => __( 'Postal code.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'country' => array(
|
2016-03-23 12:46:34 +00:00
|
|
|
'description' => __( 'Country code in ISO 3166-1 alpha-2 format.', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'email' => array(
|
|
|
|
'description' => __( 'Email address.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'format' => 'email',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'phone' => array(
|
|
|
|
'description' => __( 'Phone number.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'shipping' => array(
|
2016-03-23 11:30:58 +00:00
|
|
|
'description' => __( 'Shipping address.', 'woocommerce' ),
|
2016-12-07 11:36:46 +00:00
|
|
|
'type' => 'object',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'properties' => array(
|
|
|
|
'first_name' => array(
|
|
|
|
'description' => __( 'First name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'last_name' => array(
|
|
|
|
'description' => __( 'Last name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'company' => array(
|
|
|
|
'description' => __( 'Company name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'address_1' => array(
|
2016-10-11 01:39:13 +00:00
|
|
|
'description' => __( 'Address 1', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'address_2' => array(
|
2016-10-11 01:39:13 +00:00
|
|
|
'description' => __( 'Address 2', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'city' => array(
|
|
|
|
'description' => __( 'City name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'state' => array(
|
|
|
|
'description' => __( 'ISO code or name of the state, province or district.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'postcode' => array(
|
|
|
|
'description' => __( 'Postal code.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'country' => array(
|
2016-03-23 12:46:34 +00:00
|
|
|
'description' => __( 'Country code in ISO 3166-1 alpha-2 format.', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'payment_method' => array(
|
|
|
|
'description' => __( 'Payment method ID.', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'payment_method_title' => array(
|
|
|
|
'description' => __( 'Payment method title.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'transaction_id' => array(
|
|
|
|
'description' => __( 'Unique transaction ID.', 'woocommerce' ),
|
2016-05-30 21:38:09 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 12:46:34 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'customer_ip_address' => array(
|
|
|
|
'description' => __( "Customer's IP address.", 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'customer_user_agent' => array(
|
2016-03-23 12:46:34 +00:00
|
|
|
'description' => __( 'User agent of the customer.', 'woocommerce' ),
|
2016-03-23 11:30:58 +00:00
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-03-23 12:46:34 +00:00
|
|
|
'created_via' => array(
|
|
|
|
'description' => __( 'Shows where the order was created.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'customer_note' => array(
|
|
|
|
'description' => __( 'Note left by customer during checkout.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'date_completed' => array(
|
|
|
|
'description' => __( "The date the order was completed, in the site's timezone.", 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'date_paid' => array(
|
|
|
|
'description' => __( "The date the order has been paid, in the site's timezone.", 'woocommerce' ),
|
|
|
|
'type' => 'date-time',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-03-23 12:46:34 +00:00
|
|
|
),
|
|
|
|
'cart_hash' => array(
|
|
|
|
'description' => __( 'MD5 hash of cart items to ensure orders are not modified.', 'woocommerce' ),
|
2016-05-30 21:38:09 +00:00
|
|
|
'type' => 'string',
|
2016-03-23 12:46:34 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
'number' => array(
|
|
|
|
'description' => __( 'Order number.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-08-17 10:44:39 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
'line_items' => array(
|
2016-03-28 19:17:11 +00:00
|
|
|
'description' => __( 'Line items data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Item ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
'name' => array(
|
|
|
|
'description' => __( 'Product name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
'product_id' => array(
|
|
|
|
'description' => __( 'Product ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'variation_id' => array(
|
|
|
|
'description' => __( 'Variation ID, if applicable.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'quantity' => array(
|
|
|
|
'description' => __( 'Quantity ordered.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'tax_class' => array(
|
|
|
|
'description' => __( 'Tax class of product.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'subtotal' => array(
|
|
|
|
'description' => __( 'Line subtotal (before discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'subtotal_tax' => array(
|
|
|
|
'description' => __( 'Line subtotal tax (before discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Line total (after discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'total_tax' => array(
|
|
|
|
'description' => __( 'Line total tax (after discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'taxes' => array(
|
|
|
|
'description' => __( 'Line taxes.', 'woocommerce' ),
|
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Tax rate ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Tax total.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'subtotal' => array(
|
|
|
|
'description' => __( 'Tax subtotal.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 22:19:08 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
),
|
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 22:19:08 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
),
|
|
|
|
'sku' => array(
|
|
|
|
'description' => __( 'Product SKU.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'price' => array(
|
|
|
|
'description' => __( 'Product price.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'meta' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data (formatted).', 'woocommerce' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'label' => array(
|
|
|
|
'description' => __( 'Meta label.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 22:19:08 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
),
|
2016-03-23 22:19:08 +00:00
|
|
|
'tax_lines' => array(
|
2016-03-28 19:17:11 +00:00
|
|
|
'description' => __( 'Tax lines data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-03-23 22:19:08 +00:00
|
|
|
'readonly' => true,
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Item ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'rate_code' => array(
|
|
|
|
'description' => __( 'Tax rate code.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'rate_id' => array(
|
|
|
|
'description' => __( 'Tax rate ID.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'label' => array(
|
|
|
|
'description' => __( 'Tax rate label.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'compound' => array(
|
|
|
|
'description' => __( 'Show if is a compound tax rate.', 'woocommerce' ),
|
|
|
|
'type' => 'boolean',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'tax_total' => array(
|
|
|
|
'description' => __( 'Tax total (not including shipping taxes).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'shipping_tax_total' => array(
|
|
|
|
'description' => __( 'Shipping tax total.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
),
|
2016-03-23 22:19:08 +00:00
|
|
|
'shipping_lines' => array(
|
2016-03-28 19:17:11 +00:00
|
|
|
'description' => __( 'Shipping lines data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Item ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
2016-03-23 22:19:08 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
'method_title' => array(
|
|
|
|
'description' => __( 'Shipping method name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'method_id' => array(
|
|
|
|
'description' => __( 'Shipping method ID.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Line total (after discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'total_tax' => array(
|
|
|
|
'description' => __( 'Line total tax (after discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'taxes' => array(
|
|
|
|
'description' => __( 'Line taxes.', 'woocommerce' ),
|
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Tax rate ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Tax total.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
),
|
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
'fee_lines' => array(
|
2016-03-28 19:17:11 +00:00
|
|
|
'description' => __( 'Fee lines data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Item ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
2016-03-23 22:19:08 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
'name' => array(
|
|
|
|
'description' => __( 'Fee name.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'tax_class' => array(
|
|
|
|
'description' => __( 'Tax class of fee.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'tax_status' => array(
|
|
|
|
'description' => __( 'Tax status of fee.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'enum' => array( 'taxable', 'none' ),
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Line total (after discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'total_tax' => array(
|
|
|
|
'description' => __( 'Line total tax (after discounts).', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'taxes' => array(
|
|
|
|
'description' => __( 'Line taxes.', 'woocommerce' ),
|
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Tax rate ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Tax total.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'subtotal' => array(
|
|
|
|
'description' => __( 'Tax subtotal.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
2016-12-07 14:24:44 +00:00
|
|
|
),
|
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
'coupon_lines' => array(
|
2016-03-28 19:17:11 +00:00
|
|
|
'description' => __( 'Coupons line data.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-03-23 11:30:58 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Item ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'code' => array(
|
|
|
|
'description' => __( 'Coupon code.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'discount' => array(
|
|
|
|
'description' => __( 'Discount total.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'discount_tax' => array(
|
|
|
|
'description' => __( 'Discount total tax.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'meta_data' => array(
|
2017-02-15 14:28:45 +00:00
|
|
|
'description' => __( 'Meta data.', 'woocommerce' ),
|
2016-12-07 14:24:44 +00:00
|
|
|
'type' => 'array',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Meta ID.', 'woocommerce' ),
|
2016-12-07 18:13:17 +00:00
|
|
|
'type' => 'integer',
|
2016-12-07 14:24:44 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'key' => array(
|
|
|
|
'description' => __( 'Meta key.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
'value' => array(
|
|
|
|
'description' => __( 'Meta value.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
),
|
2016-06-02 19:05:08 +00:00
|
|
|
'refunds' => array(
|
|
|
|
'description' => __( 'List of refunds.', 'woocommerce' ),
|
2016-12-07 12:20:56 +00:00
|
|
|
'type' => 'array',
|
2016-06-02 19:05:08 +00:00
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
2016-12-07 14:24:44 +00:00
|
|
|
'items' => array(
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => array(
|
|
|
|
'id' => array(
|
|
|
|
'description' => __( 'Refund ID.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'reason' => array(
|
|
|
|
'description' => __( 'Refund reason.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
|
|
|
'total' => array(
|
|
|
|
'description' => __( 'Refund total.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'context' => array( 'view', 'edit' ),
|
|
|
|
'readonly' => true,
|
|
|
|
),
|
2016-06-02 19:05:08 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-08-17 10:44:39 +00:00
|
|
|
'set_paid' => array(
|
|
|
|
'description' => __( 'Define if the order is paid. It will set the status to processing and reduce stock items.', 'woocommerce' ),
|
|
|
|
'type' => 'boolean',
|
|
|
|
'default' => false,
|
|
|
|
'context' => array( 'edit' ),
|
|
|
|
),
|
2016-03-23 11:30:58 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->add_additional_fields_schema( $schema );
|
|
|
|
}
|
2016-03-23 22:19:08 +00:00
|
|
|
|
|
|
|
/**
|
2016-03-30 22:11:56 +00:00
|
|
|
* Get the query params for collections.
|
2016-03-23 22:19:08 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_collection_params() {
|
|
|
|
$params = parent::get_collection_params();
|
|
|
|
|
|
|
|
$params['status'] = array(
|
|
|
|
'default' => 'any',
|
|
|
|
'description' => __( 'Limit result set to orders assigned a specific status.', 'woocommerce' ),
|
|
|
|
'type' => 'string',
|
|
|
|
'enum' => array_merge( array( 'any' ), $this->get_order_statuses() ),
|
|
|
|
'sanitize_callback' => 'sanitize_key',
|
|
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
|
|
);
|
2016-03-30 23:26:51 +00:00
|
|
|
$params['customer'] = array(
|
2016-03-30 22:11:56 +00:00
|
|
|
'description' => __( 'Limit result set to orders assigned a specific customer.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'sanitize_callback' => 'absint',
|
|
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
|
|
);
|
2016-03-30 23:26:51 +00:00
|
|
|
$params['product'] = array(
|
|
|
|
'description' => __( 'Limit result set to orders assigned a specific product.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'sanitize_callback' => 'absint',
|
|
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
|
|
);
|
2016-03-30 22:11:56 +00:00
|
|
|
$params['dp'] = array(
|
|
|
|
'default' => 2,
|
|
|
|
'description' => __( 'Number of decimal points to use in each resource.', 'woocommerce' ),
|
|
|
|
'type' => 'integer',
|
|
|
|
'sanitize_callback' => 'absint',
|
|
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
|
|
);
|
2016-03-23 22:19:08 +00:00
|
|
|
|
|
|
|
return $params;
|
|
|
|
}
|
2016-02-17 19:29:09 +00:00
|
|
|
}
|