• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/discountmodule.php
  • Класс: BitrixSaleInternalsDiscountModuleTable
  • Вызов: DiscountModuleTable::deleteByDiscount
static function deleteByDiscount($discount)
{
	$discount = (int)$discount;
	if ($discount <= 0)
		return;
	$conn = Application::getConnection();
	$helper = $conn->getSqlHelper();
	$conn->queryExecute(
		'delete from '.$helper->quote(self::getTableName()).' where '.$helper->quote('DISCOUNT_ID').' = '.$discount
	);
}