File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 2026-01-21 v6.7.8
2+ - Добавлена передача даты рождения клиента в CRM
3+
14## 2025-12-15 v6.7.7
25- Исправлена ошибка обновления ID участий в ПЛ
36
Original file line number Diff line number Diff line change @@ -160,6 +160,10 @@ private static function getSimpleCustomer(array $arFields): array
160160 $ customer ['address ' ]['city ' ] = $ arFields ['PERSONAL_CITY ' ] ?? null ;
161161 $ customer ['address ' ]['text ' ] = $ arFields ['PERSONAL_STREET ' ] ?? null ;
162162 $ customer ['address ' ]['index ' ] = $ arFields ['PERSONAL_ZIP ' ] ?? null ;
163+ $ customer ['birthday ' ] = isset ($ arFields ['PERSONAL_BIRTHDAY ' ])
164+ ? new \DateTime ($ arFields ['PERSONAL_BIRTHDAY ' ])
165+ : null
166+ ;
163167
164168 if (mb_strlen ($ arFields ['EMAIL ' ]) < 100 ) {
165169 $ customer ['email ' ] = $ arFields ['EMAIL ' ];
Original file line number Diff line number Diff line change 1- - Исправлена ошибка обновления ID участий в ПЛ
1+ - Добавлена передача даты рождения клиента в CRM
Original file line number Diff line number Diff line change 11<?php
22
33$ arModuleVersion = [
4- 'VERSION ' => '6.7.7 ' ,
5- 'VERSION_DATE ' => '2025-12-15 12:30:00 '
4+ 'VERSION ' => '6.7.8 ' ,
5+ 'VERSION_DATE ' => '2026-01-21 12:30:00 '
66];
Original file line number Diff line number Diff line change 1818 */
1919class Constants
2020{
21- public const MODULE_VERSION = '6.7.7 ' ;
21+ public const MODULE_VERSION = '6.7.8 ' ;
2222 public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null ' ;
2323 public const BITRIX_USER_ID_PREFIX = 'bitrixUserId- ' ;
2424 public const CRM_USERS_MAP = 'crm_users_map ' ;
You can’t perform that action at this time.
0 commit comments