Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2026-07-14 v6.8.5
- Исправлена загрузка Constants при установке и обновлении модуля

## 2026-07-01 v6.8.4
- Добавлена поддержка мультисайтовости для типа контрагента

Expand Down
2 changes: 1 addition & 1 deletion intaro.retailcrm/description.ru
Original file line number Diff line number Diff line change
@@ -1 +1 @@
- Добавлена поддержка мультисайтовости для типа контрагента
- Исправлена загрузка Constants при установке и обновлении модуля
1 change: 1 addition & 0 deletions intaro.retailcrm/install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
return false;
}

require_once(__DIR__ . '/../lib/component/constants.php');
require_once(__DIR__ . '/../lib/component/advanced/installertrait.php');

class intaro_retailcrm extends CModule
Expand Down
4 changes: 2 additions & 2 deletions intaro.retailcrm/install/version.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$arModuleVersion = [
'VERSION' => '6.8.4',
'VERSION_DATE' => '2026-07-01 12:00:00'
'VERSION' => '6.8.5',
'VERSION_DATE' => '2026-07-14 12:00:00'
];
2 changes: 1 addition & 1 deletion intaro.retailcrm/lib/component/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
class Constants
{
public const MODULE_VERSION = '6.8.4';
public const MODULE_VERSION = '6.8.5';
public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null';
public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-';
public const CRM_USERS_MAP = 'crm_users_map';
Expand Down
2 changes: 2 additions & 0 deletions intaro.retailcrm/updater.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

require_once __DIR__ . '/lib/component/constants.php';

use Bitrix\Main\Loader;
use Bitrix\Main\Config\Option;
use Bitrix\Main\Application;
Expand Down
Loading