• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/storedocumentbarcodetable.php
  • Класс: BitrixCatalogStoreDocumentBarcodeTable
  • Вызов: StoreDocumentBarcodeTable::deleteByDocument
static function deleteByDocument(int $id): void
{
	if ($id <= 0)
	{
		return;
	}

	$conn = Application::getConnection();
	$helper = $conn->getSqlHelper();
	$conn->queryExecute(
		'delete from ' . $helper->quote(self::getTableName())
		. ' where ' . $helper->quote('DOC_ID') . ' = ' . $id
	);
	unset($helper, $conn);
}