fixed createdAt crash
This commit is contained in:
parent
708e29f797
commit
d382e49b7c
2 changed files with 16 additions and 8 deletions
|
@ -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(),
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue