1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Add selection of client roles: fix indentation

This commit is contained in:
Бараников Максим 2020-08-14 12:58:26 +03:00
parent 70a1ebd84c
commit 9bc00eb782
2 changed files with 3 additions and 2 deletions

View file

@ -623,6 +623,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
public function isCustomer($user)
{
$retailcrmSettings = array();
if (!empty($this->retailcrm_settings) && array_key_exists('client_roles', $this->retailcrm_settings)) {
$retailcrmSettings = $this->retailcrm_settings['client_roles'];
}

View file

@ -171,7 +171,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
}
if ($wpUser instanceof WP_User) {
if(!$this->customers->isCustomer($wpUser)){
if (!$this->customers->isCustomer($wpUser)) {
return false;
}
@ -369,7 +369,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
$order_data = $this->orders->build($order)->get_data();
if ($order->get_items('shipping')) {
$shippings = $order->get_items( 'shipping' );
$shippings = $order->get_items('shipping');
$shipping = reset($shippings);
$shipping_code = explode(':', $shipping['method_id']);