Automattic\WooCommerce\Admin\Overrides
OrderRefund::get_report_customer_id()
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() OrderRefund::get report customer id WC 9.7.1
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; }