CAllCrmLead::SynchronizeProductRows

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CAllCrmLead
  4. SynchronizeProductRows
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_lead.php
  • Класс: \CAllCrmLead
  • Вызов: CAllCrmLead::SynchronizeProductRows
static function SynchronizeProductRows($ID, $checkPerms = true)
{

	$arTotalInfo = CCrmProductRow::CalculateTotalInfo('L', $ID, $checkPerms);

	if (is_array($arTotalInfo))
	{
		$arFields = array(
			'TAX_VALUE' => isset($arTotalInfo['TAX_VALUE']) ? $arTotalInfo['TAX_VALUE'] : 0.0
		);

		$entity = new CCrmLead($checkPerms);
		if (!$entity::isManualOpportunity($ID))
		{
			$arFields['OPPORTUNITY'] = isset($arTotalInfo['OPPORTUNITY']) ? $arTotalInfo['OPPORTUNITY'] : 0.0;
		}
		$entity->Update($ID, $arFields);
	}
}

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