Automattic\WooCommerce\Admin\Overrides

OrderRefund::get_report_customer_id()publicWC 1.0

Get the customer ID of the parent order used for reports in the customer lookup table.

Метод класса: OrderRefund{}

Хуков нет.

Возвращает

int|true|false. Customer ID of parent order, or false if parent order not found.

Использование

$OrderRefund = new OrderRefund();
$OrderRefund->get_report_customer_id();

Код OrderRefund::get_report_customer_id() WC 8.7.0

public function get_report_customer_id() {
	if ( is_null( $this->customer_id ) ) {
		$parent_order = \wc_get_order( $this->get_parent_id() );

		if ( ! $parent_order ) {
			$this->customer_id = false;
		}

		$this->customer_id = CustomersDataStore::get_or_create_customer_from_order( $parent_order );
	}

	return $this->customer_id;
}