forked from ddrilling/AsbCloudServer
Fix DailyReportMakerExcel. string[] to string
This commit is contained in:
parent
24ccc2a128
commit
ed8bbf641a
@ -168,9 +168,9 @@ namespace AsbCloudInfrastructure.Services.DailyReport
|
|||||||
private int AddBlockDrillingModes(IXLWorksheet sheet, int startRow, DailyReportDto reportDto)
|
private int AddBlockDrillingModes(IXLWorksheet sheet, int startRow, DailyReportDto reportDto)
|
||||||
{
|
{
|
||||||
sheet.Cell(startRow + 2, 6).Value =
|
sheet.Cell(startRow + 2, 6).Value =
|
||||||
$"{reportDto.RotorDrillingModes}";
|
$"{string.Join(", ", reportDto.RotorDrillingModes)}";
|
||||||
sheet.Cell(startRow + 3, 9).Value =
|
sheet.Cell(startRow + 3, 9).Value =
|
||||||
$"{reportDto.SlideDrillingModes}";
|
$"{string.Join(", ", reportDto.SlideDrillingModes)}";
|
||||||
|
|
||||||
return startRow + 3;
|
return startRow + 3;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user