This commit is contained in:
kamonwan taengsuk
2023-07-13 19:20:34 +07:00
parent be208e3f5c
commit 4ce4d619d6
7 changed files with 28 additions and 22 deletions

View File

@@ -2322,6 +2322,12 @@ namespace rmutr_report.Controllers
public IActionResult GetBudgetExpenditureRevenueReport([FromRoute] string type,
[FromBody] budget_expenditure_report_from_revenue budget)
{
var b = budget.budgets.ToArray();
foreach (var bb in b)
{
bb.personnel_list_s = new List<personnel_list> { bb.personnel_lists };
}
var budgetExpenditure = new List<budget_expenditure_report_from_revenue>() { budget };
Report report = new Report();