• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/discount/index/indexelement.php
  • Класс: BitrixSaleDiscountIndexIndexElementTable
  • Вызов: IndexElementTable::fillByDiscount
static function fillByDiscount($discountId, array $indexData)
{
	$items = array();
	foreach($indexData as $elementId)
	{
		$items[] = array(
			'DISCOUNT_ID' => $discountId,
			'ELEMENT_ID' => $elementId,
		);
	}

	static::insertBatch($items);
}