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

fix for customer id assigning & possible crash after errors in order creation

This commit is contained in:
Pavel 2020-02-17 11:00:23 +03:00
parent 135e28a4ef
commit 5cd516a67b
2 changed files with 19 additions and 5 deletions

View file

@ -497,22 +497,36 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
return false;
}
if (empty($order['customer']['externalId']))
$customerId = isset($order['customer']['externalId']) ? $order['customer']['externalId'] : null;
if ($order['customer']['type'] == 'customer_corporate') {
$customerId = isset($order['contact']['externalId']) ? $order['contact']['externalId'] : null;
}
$args = array(
'status' => isset($options[$order['status']])
? isset($options[$order['status']])
: 'processing',
'customer_id' => isset($order['customer']['externalId'])
? $order['customer']['externalId']
: (isset($order['contact']['externalId']) ? $order['contact']['externalId'] : null)
'customer_id' => $customerId
);
/** @var WC_Order|WP_Error $wc_order */
$wc_order = wc_create_order($args);
$customer = $order['customer'];
$address = isset($order['customer']['address']) ? $order['customer']['address'] : array();
$companyName = '';
if ($wc_order instanceof WP_Error) {
$logger = new WC_Logger();
$logger->add('retailcrm', sprintf(
'[%d] error while creating order: %s',
$order['id'],
print_r($wc_order->get_error_messages(), true)
));
return false;
}
if (isset($order['customer']['type'])
&& $order['customer']['type'] == 'customer_corporate'
&& !empty($order['customer']['mainCompany'])

View file

@ -90,7 +90,7 @@ class WC_Retailcrm_Plugin {
/**
* Edit configuration in CRM
*
* @param WC_Retailcrm_Proxy $api_client
* @param WC_Retailcrm_Proxy|\WC_Retailcrm_Client_V4|\WC_Retailcrm_Client_V5 $api_client
* @param string $client_id
* @param bool $active
*