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

This commit is contained in:
kamonwan taengsuk
2024-08-20 17:28:12 +07:00
parent e889c93e21
commit be50663796

View File

@@ -2770,7 +2770,7 @@ namespace rmutr_report.Controllers
indetail.topic9 = indetail.topic;
indetail.topic10 = indetail.qualification;
indetail.amount9 = indetail.value1;
indetail.amount10 = indetail.value2*indetail.value1;
indetail.amount10 = indetail.value2*12;
indetail.text9 = "อัตรา";
indetail.text10 = "บาท";
indetail.row_no3 = no3;
@@ -2848,7 +2848,7 @@ namespace rmutr_report.Controllers
}
}
budget.total = budget.details.Where(f=>f.topic_type==1).Sum(d => d.amount1);
budget.total = budget.details.Where(f=>f.topic_type==1).Sum(d => d.value1);
var budgetExpenditure = new List<budget_expenditure_report_from_revenue_v2>() { budget };
Report report = new Report();