Фикс бага неполного экспорта ГГД

This commit is contained in:
Olga Nemt 2024-05-06 10:17:28 +05:00
parent e1748ebfe4
commit 9006e1e36c

View File

@ -42,7 +42,9 @@ public class WellOperationExport<TTemplate> : ExcelExportService<WellOperationDt
{
var request = new WellOperationRequest(new[] { options.IdWell })
{
OperationType = options.IdType
OperationType = options.IdType,
Skip = 0,
Take = 1000000,
};
return wellOperationRepository.GetAsync(request, token);