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

This commit is contained in:
kamonwan taengsuk
2025-02-25 19:09:42 +07:00
parent a4b9c896dd
commit c5e56063e2
13 changed files with 12 additions and 11 deletions

View File

@@ -5516,8 +5516,8 @@ namespace rmutr_report.Controllers
ws.Range(ws.Cell(row, 3), ws.Cell(row, 17)).Style.NumberFormat.Format = "#,##0";
row++;
}
foreach (var sub in outputProject.SubBudgetSpending ??
//}
foreach (var sub in budgetSpendingPlan.SubBudgetSpending ??
new List<sub_budget_spending_plan>())
{
ws.Cell(row, 1).Value = sub.sub_budget_spending_plan_name;
@@ -5555,6 +5555,7 @@ namespace rmutr_report.Controllers
row++;
}
}
}
}