• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/manager.php
  • Класс: BitrixSaleCashboxManager
  • Вызов: Manager::isEnabledPaySystemPrint
static function isEnabledPaySystemPrint(): bool
{
	Cashbox::init();

	$cashboxList = self::getListFromCache();
	foreach ($cashboxList as $cashbox)
	{
		if ($cashbox['ACTIVE'] === 'N')
		{
			continue;
		}

		if (self::isPaySystemCashbox($cashbox['HANDLER']))
		{
			return true;
		}
	}

	return false;
}