mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 21:26:08 +03:00
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
class ModelRetailcrmCustomer extends Model {
|
|
public function sendToCrm($customer) {
|
|
$this->load->model('setting/setting');
|
|
$settings = $this->model_setting_setting->getSetting('retailcrm');
|
|
|
|
if(empty($customer))
|
|
return false;
|
|
if(empty($settings['retailcrm_url']) || empty($settings['retailcrm_apikey']))
|
|
return false;
|
|
|
|
require_once DIR_SYSTEM . 'library/retailcrm/bootstrap.php';
|
|
|
|
$this->retailcrmApi = new RetailcrmProxy(
|
|
$settings['retailcrm_url'],
|
|
$settings['retailcrm_apikey'],
|
|
DIR_SYSTEM . 'logs/retailcrm.log'
|
|
);
|
|
|
|
$customerToCrm = $this->process($customer);
|
|
|
|
$this->retailcrmApi->customersCreate($customerToCrm);
|
|
}
|
|
|
|
private function process($customer) {
|
|
$customerToCrm = array(
|
|
'externalId' => $customer['customer_id'],
|
|
'firstName' => $customer['firstname'],
|
|
'lastName' => $customer['lastname'],
|
|
'email' => $customer['email'],
|
|
'phones' => array(
|
|
array(
|
|
'number' => $customer['telephone']
|
|
)
|
|
),
|
|
'createdAt' => $customer['date_added']
|
|
);
|
|
|
|
return $customerToCrm;
|
|
}
|
|
}
|