• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/binding/quotecontact.php
  • Класс: Bitrix\Crm\Binding\QuoteContactTable
  • Вызов: QuoteContactTable::bindContactIDs
static function bindContactIDs($quoteID, array $contactIDs)
{
	$bindings = EntityBinding::prepareEntityBindings(\CCrmOwnerType::Contact, $contactIDs);
	$qty = count($bindings);
	if($qty > 0)
	{
		for($i = 0; $i < $qty; $i++)
		{
			if($i === 0)
			{
				$bindings[$i]['IS_PRIMARY'] = 'Y';
			}
			$bindings[$i]['SORT'] = 10 * ($i + 1);
		}
		self::bindContacts($quoteID, $bindings);
	}
}