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

restore correct merge state

This commit is contained in:
Pavel 2020-04-30 10:29:33 +03:00
parent 303f537291
commit efb8be92b9
3 changed files with 18 additions and 12 deletions

View file

@ -264,16 +264,6 @@ if (!class_exists('WC_Retailcrm_Base')) {
update_option(static::$option_key, $options);
}
<<<<<<< HEAD
/**
* Create customer in retailCRM
*
* @param int $customer_id
*
* @return void
* @throws \Exception
*/
=======
/**
* Create customer in retailCRM
*
@ -282,13 +272,13 @@ if (!class_exists('WC_Retailcrm_Base')) {
* @return void
* @throws \Exception
*/
>>>>>>> merge changes
public function create_customer($customer_id)
{
if (WC_Retailcrm_Plugin::history_running() === true) {
return;
}
<<<<<<< HEAD
<<<<<<< HEAD
$client = $this->getApiClient();
@ -303,6 +293,8 @@ if (!class_exists('WC_Retailcrm_Base')) {
return;
}
=======
=======
>>>>>>> restore correct merge state
$client = $this->getApiClient();
if (empty($client)) {
@ -315,7 +307,6 @@ if (!class_exists('WC_Retailcrm_Base')) {
if ($resp && $resp->isSuccessful() && isset($resp['customers']) && count($resp['customers']) > 0) {
return;
}
>>>>>>> merge changes
$this->customers->createCustomer($customer_id);
}

View file

@ -131,6 +131,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
if ($wpUser instanceof WP_User) {
<<<<<<< HEAD
<<<<<<< HEAD
=======
<<<<<<< HEAD
<<<<<<< HEAD
@ -210,10 +211,13 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
}
=======
=======
=======
>>>>>>> restore correct merge state
if (!WC_Retailcrm_Customers::isCustomer($wpUser)) {
return $wcOrder;
}
<<<<<<< HEAD
>>>>>>> corporate customers alternative logic
>>>>>>> corporate customers alternative logic
$wpUserId = (int) $wpUser->get('ID');
@ -226,6 +230,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
$this->fillOrderCreate($wpUserId, $wpUser->get('billing_email'), $wcOrder);
>>>>>>> merge changes
>>>>>>> merge changes
=======
$wpUserId = (int) $wpUser->get('ID');
$this->fillOrderCreate($wpUserId, $wpUser->get('billing_email'), $wcOrder);
>>>>>>> restore correct merge state
} else {
$wcCustomer = $this->customers->buildCustomerFromOrderData($wcOrder);
$this->fillOrderCreate(0, $wcCustomer->get_billing_email(), $wcOrder);
@ -295,6 +303,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
$this->order['customer']['id'] = $corporateId;
} else {
<<<<<<< HEAD
<<<<<<< HEAD
=======
<<<<<<< HEAD
<<<<<<< HEAD
@ -324,15 +333,21 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
>>>>>>> WIP: corporate customers support
=======
=======
=======
>>>>>>> restore correct merge state
$this->customers->fillCorporateAddress(
$crmCorporate['id'],
new WC_Customer($wcCustomerId),
$wcOrder
);
<<<<<<< HEAD
>>>>>>> new address logic & fixes
>>>>>>> new address logic & fixes
$this->order['customer']['id'] = $crmCorporate['id'];
=======
$this->order['customer']['id'] = $crmCorporate['id'];
>>>>>>> restore correct merge state
}
$this->order['contact']['id'] = $foundCustomerId;

0
tests/bin/install.sh Executable file → Normal file
View file