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

	static::insertBatch($items);
}