2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Operations;
|
2024-06-30 20:31:19 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Requests.ExportOptions;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ExcelServices.Templates;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|
|
|
|
|
|
|
|
|
public class ProcessMapPlanSlideLoweringBitExportService : ProcessMapPlanExportService<ProcessMapPlanSlideLoweringBitDto>
|
|
|
|
|
{
|
|
|
|
|
public ProcessMapPlanSlideLoweringBitExportService(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanSlideLoweringBitDto, ProcessMapPlanBaseRequestWithWell> processMapPlanRepository,
|
|
|
|
|
IWellService wellService)
|
|
|
|
|
: base(processMapPlanRepository, wellService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override ITemplateParameters TemplateParameters { get; } = new ProcessMapPlanSlideLoweringBitTemplate();
|
|
|
|
|
|
|
|
|
|
protected override async Task<string> BuildFileNameAsync(WellRelatedExportRequest options, CancellationToken token)
|
|
|
|
|
{
|
|
|
|
|
var caption = await wellService.GetWellCaptionByIdAsync(options.IdWell, token);
|
|
|
|
|
|
|
|
|
|
return $"{caption}_РТК_План_подход_к_забою_в_слайде.xlsx";
|
|
|
|
|
}
|
|
|
|
|
}
|