• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/merger/conflictresolver/base.php
  • Класс: Bitrix\Crm\Merger\ConflictResolver\Base
  • Вызов: Base::doResolve
protected function doResolve(): bool
{
	foreach (array_keys($this->seeds) as $seedId)
	{
		$this->curSeedId = $seedId;
		$targetValue = $this->getTargetValue();
		$seedValue = $this->getSeedValue();

		if (!$this->resolveByValue($seedValue, $targetValue))
		{
			return false;
		}
	}

	return true;
}