Bug Fixed
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2025-02-21 21:27:34 +07:00
parent 5d2d463a8c
commit a4b9c896dd
5 changed files with 9 additions and 6 deletions

View File

@@ -5515,7 +5515,9 @@ namespace rmutr_report.Controllers
ws.Range(ws.Cell(row, 1), ws.Cell(row, 17)).Style.Border.RightBorder = XLBorderStyleValues.Thin;
ws.Range(ws.Cell(row, 3), ws.Cell(row, 17)).Style.NumberFormat.Format = "#,##0";
row++;
foreach (var sub in budgetSpendingPlan.SubBudgetSpending ??
}
foreach (var sub in outputProject.SubBudgetSpending ??
new List<sub_budget_spending_plan>())
{
ws.Cell(row, 1).Value = sub.sub_budget_spending_plan_name;
@@ -5553,7 +5555,7 @@ namespace rmutr_report.Controllers
row++;
}
}
}
}
using (var stream = new MemoryStream())