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

fixed createdAt crash

This commit is contained in:
Pavel 2020-02-03 12:23:38 +03:00 committed by Павел
parent 708e29f797
commit d382e49b7c
2 changed files with 16 additions and 8 deletions

View file

@ -258,11 +258,17 @@ if (!class_exists('WC_Retailcrm_Customers')) :
* @param WC_Customer $customer
*
* @return void
* @throws \Exception
*/
protected function processCustomer($customer)
{
$createdAt = $customer->get_date_created();
$firstName = $customer->get_first_name();
if (empty($createdAt)) {
$createdAt = new WC_DateTime();
}
$data_customer = array(
'createdAt' => $createdAt->date('Y-m-d H:i:s'),
'firstName' => $firstName ? $firstName : $customer->get_username(),

View file

@ -311,15 +311,17 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
'contactIds' => array($foundCustomerId)
), true);
foreach ($crmCorporateList as $corporate) {
if (!empty($corporate)
&& !empty($corporate['mainCompany'])
&& isset($corporate['mainCompany']['name'])
&& $corporate['mainCompany']['name'] == $wcOrder->get_billing_company()
) {
$crmCorporate = $corporate;
if (!empty($crmCorporateList)) {
foreach ($crmCorporateList as $corporate) {
if (!empty($corporate)
&& !empty($corporate['mainCompany'])
&& isset($corporate['mainCompany']['name'])
&& $corporate['mainCompany']['name'] == $wcOrder->get_billing_company()
) {
$crmCorporate = $corporate;
break;
break;
}
}
}