...Человеческий поиск в разработке...
- Модуль: 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; }