Merge pull request '#15605889 РКТ отчёт' (#100) from feature/process_map_report into dev

Reviewed-on: http://test.digitaldrilling.ru:8080/DDrilling/AsbCloudServer/pulls/100
This commit is contained in:
Никита Фролов 2023-09-14 09:58:23 +05:00
commit 894a96972f
3 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace AsbCloudInfrastructure.Services.ProcessMap
public class ProcessMapReportMakerService : IProcessMapReportMakerService public class ProcessMapReportMakerService : IProcessMapReportMakerService
{ {
const int firstColumn = 2; const int firstColumn = 2;
const int lastColumn = 49; const int lastColumn = 42;
const int headerRowsCount = 5; const int headerRowsCount = 5;

View File

@ -113,7 +113,7 @@ namespace AsbCloudWebApi.Controllers
return NoContent(); return NoContent();
var fileName = $"РТК по скважине {well.Caption} куст {well.Cluster}.xlsx"; var fileName = $"РТК по скважине {well.Caption} куст {well.Cluster}.xlsx";
return File(stream, fileName); return File(stream, "application/octet-stream", fileName);
} }
return NoContent(); return NoContent();