CAllCrmQuote::MakeClientInfoString

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CAllCrmQuote
  4. MakeClientInfoString
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_quote.php
  • Класс: \CAllCrmQuote
  • Вызов: CAllCrmQuote::MakeClientInfoString
static function MakeClientInfoString($arQuote, $bDualFields = true)
{
	$strClientInfo = '';

	$i = 0;
	foreach (self::$clientFields as $k)
	{
		$index = $bDualFields === true ? '~'.$k : $k;
		if (isset($arQuote[$index]) && trim($arQuote[$index]) <> '')
			$strClientInfo .= (($i++ > 0) ? ', ' : '').$arQuote[$index];
	}

	return $strClientInfo;
}

Добавить комментарий