Fix DailyReportMakerExcel. string[] to string

This commit is contained in:
ngfrolov 2022-05-18 13:16:03 +05:00
parent 24ccc2a128
commit ed8bbf641a

View File

@ -168,9 +168,9 @@ namespace AsbCloudInfrastructure.Services.DailyReport
private int AddBlockDrillingModes(IXLWorksheet sheet, int startRow, DailyReportDto reportDto)
{
sheet.Cell(startRow + 2, 6).Value =
$"{reportDto.RotorDrillingModes}";
$"{string.Join(", ", reportDto.RotorDrillingModes)}";
sheet.Cell(startRow + 3, 9).Value =
$"{reportDto.SlideDrillingModes}";
$"{string.Join(", ", reportDto.SlideDrillingModes)}";
return startRow + 3;
}