• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/UpdateCatalogProductsCommand.php
  • Класс: BitrixCrmMobileProductGridUpdateCatalogProductsCommand
  • Вызов: UpdateCatalogProductsCommand::getProductPendingFiles
private function getProductPendingFiles(array $tokens, int $skuId): PendingFileCollection
{
	$fileController = new ProductController([
		'productId' => $skuId,
	]);
	$uploader = (new Uploader($fileController));

	$this->pendingFileCollection[$skuId] = $uploader->getPendingFiles($tokens);

	return $this->pendingFileCollection[$skuId];
}