• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/checkmanager.php
  • Класс: BitrixSaleCashboxCheckManager
  • Вызов: CheckManager::getObjectById
static function getObjectById($id)
{
	if ($id <= 0)
		return null;

	$dbRes = CashboxCheckTable::getById($id);
	if ($checkInfo = $dbRes->fetch())
	{
		$check = self::createByType($checkInfo['TYPE']);
		if ($check)
		{
			$check->init($checkInfo);
			return $check;
		}
	}

	return null;
}