• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/ml/scoring.php
  • Класс: Bitrix\Crm\Ml\Scoring
  • Вызов: Scoring::replaceAssociatedEntity
static function replaceAssociatedEntity($entityTypeId, $entityId, $newEntityTypeId, $newEntityId): void
{
	PredictionHistoryTable::updateBatch(
		[
			'ENTITY_TYPE_ID' => $newEntityTypeId,
			'ENTITY_ID' => $newEntityId
		],
		[
			'=ENTITY_TYPE_ID' => $entityTypeId,
			'=ENTITY_ID' => $entityId
		]
	);
}