• Модуль: catalogmobile
  • Путь к файлу: ~/bitrix/modules/catalogmobile/lib/Controller/StoreDocumentDetails.php
  • Класс: BitrixCatalogMobileControllerStoreDocumentDetails
  • Вызов: StoreDocumentDetails::checkDocumentCancelRights
private function checkDocumentCancelRights(int $documentId): bool
{
	return (
		$this->checkDocumentBaseRights()
		&& $this->accessController->check(
			ActionDictionary::ACTION_STORE_DOCUMENT_CANCEL,
			AccessModelStoreDocument::createFromId($documentId)
		)
	);
}