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

This commit is contained in:
kamonwan taengsuk
2024-08-23 13:33:24 +07:00
parent 7137b4f2c2
commit a58f124c5e
10 changed files with 4 additions and 4 deletions

View File

@@ -2831,7 +2831,7 @@ namespace rmutr_report.Controllers
}
var sum1 = budget.details.Where(f=>f.topic_type==1).Sum(d => d.value1);
var sum2 = budget.details.Where(f=>f.topic_type==2).Sum(d => d.value2);
var sum2 = budget.details.Where(f=>f.topic_type==2&&f.topic == "รายการบุคลากร").Sum(d => d.value2);
budget.total = sum1+sum2;
var budgetExpenditure = new List<budget_expenditure_report_from_revenue_v2>() { budget };