mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-02 19:33:14 +03:00
v2.2.5
This commit is contained in:
parent
fc76adb944
commit
a8cbda785e
@ -1,3 +1,7 @@
|
|||||||
|
## v.2.2.5
|
||||||
|
* Добавлена передача страны при создании заказа для пользователя и заказа
|
||||||
|
* Добавлен метод сохранения сущностей с обработкой исключений
|
||||||
|
|
||||||
## v.2.2.4
|
## v.2.2.4
|
||||||
* Добавлена установка дефолтной валюты для оплаты при получении истории
|
* Добавлена установка дефолтной валюты для оплаты при получении истории
|
||||||
* Добавлено получение суммы оплаты из заказа в CMS, если она не передается по истории
|
* Добавлено получение суммы оплаты из заказа в CMS, если она не передается по истории
|
||||||
|
@ -50,17 +50,10 @@ class RetailcrmHistory
|
|||||||
$customer->email = $customerHistory['email'];
|
$customer->email = $customerHistory['email'];
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
if (self::loadInCMS($customer, 'update') === false){
|
||||||
$customer->update();
|
|
||||||
} catch (PrestaShopException $e) {
|
|
||||||
error_log(
|
|
||||||
'[' . date('Y-m-d H:i:s') . '] customerHistory: ' . $e->getMessage() . ' customer externalId '. $customerHistory['externalId'] . "\n",
|
|
||||||
3,
|
|
||||||
_PS_ROOT_DIR_ . '/retailcrm.log'
|
|
||||||
);
|
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$customer = new Customer();
|
$customer = new Customer();
|
||||||
|
|
||||||
@ -84,7 +77,9 @@ class RetailcrmHistory
|
|||||||
|
|
||||||
$customer->passwd = Tools::substr(str_shuffle(Tools::strtolower(sha1(rand() . time()))), 0, 5);
|
$customer->passwd = Tools::substr(str_shuffle(Tools::strtolower(sha1(rand() . time()))), 0, 5);
|
||||||
|
|
||||||
$customer->add();
|
if (self::loadInCMS($customer, 'add') === false) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($customerHistory['address'])) {
|
if (isset($customerHistory['address'])) {
|
||||||
$customerAddress = new Address();
|
$customerAddress = new Address();
|
||||||
@ -114,7 +109,10 @@ class RetailcrmHistory
|
|||||||
$customerAddress->postcode = $customerHistory['address']['index'];
|
$customerAddress->postcode = $customerHistory['address']['index'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$customerAddress->add();
|
if (self::loadInCMS($customerAddress, 'add') === false) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$customerFix[] = array(
|
$customerFix[] = array(
|
||||||
@ -281,7 +279,9 @@ class RetailcrmHistory
|
|||||||
md5($order['customer']['firstName']) . '@retailcrm.ru';
|
md5($order['customer']['firstName']) . '@retailcrm.ru';
|
||||||
$customer->passwd = Tools::substr(str_shuffle(Tools::strtolower(sha1(rand() . time()))), 0, 5);
|
$customer->passwd = Tools::substr(str_shuffle(Tools::strtolower(sha1(rand() . time()))), 0, 5);
|
||||||
|
|
||||||
$customer->add();
|
if (self::loadInCMS($customer, 'add') === false) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
array_push(
|
array_push(
|
||||||
$customerFix,
|
$customerFix,
|
||||||
@ -809,4 +809,29 @@ class RetailcrmHistory
|
|||||||
AND product_attribute_id = ' . $product_attribute_id
|
AND product_attribute_id = ' . $product_attribute_id
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* load and catch exception
|
||||||
|
*
|
||||||
|
* @param $object
|
||||||
|
* @param $action
|
||||||
|
*
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
private static function loadInCMS($object, $action)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$object->$action();
|
||||||
|
} catch (PrestaShopException $e) {
|
||||||
|
error_log(
|
||||||
|
'[' . date('Y-m-d H:i:s') . '] History:loadInCMS ' . $e->getMessage() . "\n",
|
||||||
|
3,
|
||||||
|
_PS_ROOT_DIR_ . '/retailcrm.log'
|
||||||
|
);
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -502,6 +502,7 @@ class RetailCRM extends Module
|
|||||||
$postcode = $address->postcode;
|
$postcode = $address->postcode;
|
||||||
$city = $address->city;
|
$city = $address->city;
|
||||||
$addres_line = sprintf("%s %s", $address->address1, $address->address2);
|
$addres_line = sprintf("%s %s", $address->address1, $address->address2);
|
||||||
|
$countryIso = CountryCore::getIsoById($address->id_country);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($postcode)) {
|
if (!empty($postcode)) {
|
||||||
@ -519,6 +520,11 @@ class RetailCRM extends Module
|
|||||||
$order['delivery']['address']['text'] = $addres_line;
|
$order['delivery']['address']['text'] = $addres_line;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!empty($countryIso)) {
|
||||||
|
$order['countryIso'] = $countryIso;
|
||||||
|
$customer['address']['countryIso'] = $countryIso;
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($phone) && !empty($additionalPhone)) {
|
if (!empty($phone) && !empty($additionalPhone)) {
|
||||||
$customer['phones'] = array(
|
$customer['phones'] = array(
|
||||||
array(
|
array(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user