1
0
Fork 0
mirror of synced 2025-04-03 13:53:32 +03:00

Передача доп.параметров с версиями

This commit is contained in:
anton 2024-10-14 13:11:30 +06:00
parent a77b29cd49
commit e85c539324
5 changed files with 21 additions and 4 deletions

View file

@ -1,3 +1,6 @@
## 2024-10-14 v6.5.33
- Добавлена передача версий php, модуля и Битрикс в get-запросах
## 2024-10-03 v6.5.32
- Исправлена подписка на событие создания заказа при обновлении

View file

@ -11,6 +11,7 @@
namespace RetailCrm\Http;
use Intaro\RetailCrm\Component\Constants;
use RetailCrm\Exception\CurlException;
use RetailCrm\Exception\InvalidJsonException;
use RetailCrm\Response\ApiResponse;
@ -29,6 +30,7 @@ class Client
protected $url;
protected $defaultParameters;
protected $retry;
protected $versionData;
/**
* Client constructor.
@ -46,6 +48,13 @@ class Client
);
}
$this->versionData = [
'php_version' => function_exists('phpversion') ? phpversion() : '',
'cms_source' => 'Bitrix',
'module_version' => Constants::MODULE_VERSION,
'cms_version' => SM_VERSION
];
$this->url = $url;
$this->defaultParameters = $defaultParameters;
$this->retry = 0;
@ -93,7 +102,11 @@ class Client
);
}
$parameters = array_merge($this->defaultParameters, $parameters);
if (self::METHOD_GET === $method) {
$parameters = array_merge($this->defaultParameters, $parameters, $this->versionData);
} else {
$parameters = array_merge($this->defaultParameters, $parameters);
}
$url = $this->url . $path;

View file

@ -1 +1 @@
- Исправлена подписка на событие сохранения заказа при обновлении
- Добавлена передача версий модуля, php, Битрикс в get-запросах

View file

@ -1,6 +1,6 @@
<?php
$arModuleVersion = [
'VERSION' => '6.5.32',
'VERSION_DATE' => '2024-10-03 17:00:00'
'VERSION' => '6.5.33',
'VERSION_DATE' => '2024-10-14 17:00:00'
];

View file

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