ref #91040 исправлена передача подписки по истории при регистрации клиента
This commit is contained in:
parent
c8823fb972
commit
6aeaaf8bd3
3 changed files with 8 additions and 3 deletions
|
@ -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');
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue