1
0
Fork 0
mirror of synced 2025-04-04 14:23:33 +03:00

ref #91040 исправлена передача подписки по истории при регистрации клиента

This commit is contained in:
Ivan Chaplygin 2023-07-17 14:32:59 +03:00
parent c8823fb972
commit 6aeaaf8bd3
3 changed files with 8 additions and 3 deletions

View file

@ -202,8 +202,8 @@ class CustomerBuilder extends AbstractBuilder implements RetailcrmBuilderInterfa
}
// клиент подписан при значении равном null
if (array_key_exists('subscribed', $this->dataCrm)) {
if (empty($this->dataCrm['subscribed'])) {
if (array_key_exists('emailMarketingUnsubscribedAt', $this->dataCrm)) {
if (empty($this->dataCrm['emailMarketingUnsubscribedAt'])) {
$this->customer->setSubscribe('Y');
} else {
$this->customer->setSubscribe('N');

View file

@ -15,7 +15,7 @@
<field id="cumulative_discount" group="customer">cumulativeDiscount</field>
<field id="personal_discount" group="customer">personalDiscount</field>
<field id="discount_card_number" group="customer">discountCardNumber</field>
<field id="email_marketing_unsubscribed_at" group="customer">subscribed</field>
<field id="email_marketing_unsubscribed_at" group="customer">emailMarketingUnsubscribedAt</field>
<field id="address.index" group="customerAddress">index</field>
<field id="address.country" group="customerAddress">countryIso</field>

View file

@ -156,6 +156,11 @@ class RetailCrmHistory
if ($registerNewUser === true) {
$customerBuilder->buildPassword();
$customerArray = $customerBuilder->getCustomer()->getObjectToArray();
if (!array_key_exists('UF_SUBSCRIBE_USER_EMAIL', $customerArray)) {
$customerArray['UF_SUBSCRIBE_USER_EMAIL'] = 'Y';
}
$registeredUserID = $newUser->Add(self::convertBooleanFields($customerArray));
if ($registeredUserID === false) {