• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/manager.php
  • Класс: BitrixSaleCashboxManager
  • Вызов: Manager::isCashboxChecksExist
static function isCashboxChecksExist($cashboxId): bool
{
	$params = [
		'filter' => [
			'STATUS' => 'Y',
			'CASHBOX_ID' => $cashboxId,
		],
		'limit' => 1,
	];
	$result = CheckManager::getList($params);

	return (bool)$result->fetch();
}