1
0
mirror of synced 2025-01-09 20:47:09 +03:00

Исправление API методов по работе с пользовательскими полями (#377)

This commit is contained in:
Kocmonavtik 2024-12-17 15:11:37 +03:00 committed by GitHub
parent 3162031b65
commit 115cf33423
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 6 deletions

View File

@ -1,3 +1,6 @@
## 2024-12-17 v6.6.1
- Исправлены API методы по взаимодействию с пользовательскими полями и справочниками
## 2024-12-09 v6.6.0 ## 2024-12-09 v6.6.0
- Добавлено динамическое изменение свойств товаров при настройке экспорта - Добавлено динамическое изменение свойств товаров при настройке экспорта

View File

@ -1508,7 +1508,7 @@ class ApiClient
} }
return $this->client->makeRequest( return $this->client->makeRequest(
"/custom-fields/$entity/edit/{$customField['code']}", "/custom-fields/$entity/{$customField['code']}/edit",
Client::METHOD_POST, Client::METHOD_POST,
array('customField' => json_encode($customField)) array('customField' => json_encode($customField))
); );
@ -1591,7 +1591,7 @@ class ApiClient
} }
return $this->client->makeRequest( return $this->client->makeRequest(
"/custom-fields/dictionaries/{$customDictionary['code']}/create", "/custom-fields/dictionaries/create",
Client::METHOD_POST, Client::METHOD_POST,
array('customDictionary' => json_encode($customDictionary)) array('customDictionary' => json_encode($customDictionary))
); );

View File

@ -1 +1 @@
- Добавлено динамическое изменение свойств товаров при настройке экспорта - Исправлены API методы по взаимодействию с пользовательскими полями и справочниками

View File

@ -1,6 +1,6 @@
<?php <?php
$arModuleVersion = [ $arModuleVersion = [
'VERSION' => '6.6.0', 'VERSION' => '6.6.1',
'VERSION_DATE' => '2024-12-09 14:00:00' 'VERSION_DATE' => '2024-12-17 13:00:00'
]; ];

View File

@ -18,7 +18,7 @@ namespace Intaro\RetailCrm\Component;
*/ */
class Constants class Constants
{ {
public const MODULE_VERSION = '6.5.39'; public const MODULE_VERSION = '6.6.1';
public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null';
public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-';
public const CRM_USERS_MAP = 'crm_users_map'; public const CRM_USERS_MAP = 'crm_users_map';