summary report 관련 데이터 업데이트
This commit is contained in:
@@ -145,10 +145,10 @@ namespace JobReportMailService
|
||||
body.AppendLine("<td>");
|
||||
body.AppendLine("<table border='1' cellspacing='1' cellpadding='1' style='text-align:center;'>");
|
||||
body.AppendLine("<tr>");
|
||||
body.AppendLine("<td rowspan='2'>No</td><td rowspan='2'>Title</td><td colspan='2'>Plan(ww)</td><td colspan='2'>Actual(ww)</td><td>진행</td>");
|
||||
body.AppendLine("<td rowspan='2'>No</td><td rowspan='2'>Title</td><td colspan='2'>Plan(ww)</td><td colspan='2'>Actual(ww)</td><td>진행</td><td>비고</td>");
|
||||
body.AppendLine("</tr>");
|
||||
body.AppendLine("<tr>");
|
||||
body.AppendLine("<td>시작</td><td>완료</td><td>시작</td><td>완료</td><td>%</td>");
|
||||
body.AppendLine("<td>시작</td><td>완료</td><td>시작</td><td>완료</td><td>%</td><td> </td>");
|
||||
body.AppendLine("</tr>");
|
||||
var ll = row.OrderBy(t => t.seq).ToList();
|
||||
foreach (var srow in ll)
|
||||
@@ -161,6 +161,7 @@ namespace JobReportMailService
|
||||
body.AppendLine($"<td>{srow.swa}</td>");
|
||||
body.AppendLine($"<td>{srow.ewa}</td>");
|
||||
body.AppendLine($"<td>{srow.progress}</td>");
|
||||
body.AppendLine($"<td>{srow.memo}</td>");
|
||||
body.AppendLine($"</tr>");
|
||||
}
|
||||
body.AppendLine("</table>");
|
||||
|
||||
Reference in New Issue
Block a user