forked from ddrilling/AsbCloudServer
Фикс экспорта
This commit is contained in:
parent
200b0e3ae5
commit
ed2d4ae01b
@ -1,3 +1,4 @@
|
|||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@ -26,7 +27,11 @@ public abstract class ProcessMapPlanExportService<TDto> : ExportExcelService<TDt
|
|||||||
|
|
||||||
protected override async Task<IEnumerable<TDto>> GetDtosAsync(WellRelatedExportRequest options, CancellationToken token)
|
protected override async Task<IEnumerable<TDto>> GetDtosAsync(WellRelatedExportRequest options, CancellationToken token)
|
||||||
{
|
{
|
||||||
var request = new ProcessMapPlanBaseRequestWithWell(options.IdWell);
|
var request = new ProcessMapPlanBaseRequestWithWell(options.IdWell)
|
||||||
|
{
|
||||||
|
Moment = DateTimeOffset.UtcNow
|
||||||
|
};
|
||||||
|
|
||||||
var dtos = await processMapPlanRepository.Get(request, token);
|
var dtos = await processMapPlanRepository.Get(request, token);
|
||||||
return dtos;
|
return dtos;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user