...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/invoice/internals/basket.php
- Класс: Bitrix\Crm\Invoice\Internals\BasketTable
- Вызов: BasketTable::deleteWithItems
static function deleteWithItems($id) { $id = intval($id); if ($id <= 0) throw new Main\ArgumentNullException("id"); $itemsList = BasketPropertyTable::getList( array( "select" => array("ID"), "filter" => array("BASKET_ID" => $id), ) ); while ($item = $itemsList->fetch()) BasketPropertyTable::delete($item["ID"]); return BasketTable::delete($id); }