Set UnlimitedHeight
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2024-08-28 11:07:43 +07:00
parent 7e05f00fd3
commit 9c37d45f5c
14 changed files with 13 additions and 24 deletions

View File

@@ -2709,7 +2709,6 @@ namespace rmutr_report.Controllers
bool startNumbering3 = false;
bool startNumbering4 = false;
bool startNumbering5 = false;
var detail = budget.details;
foreach (var indetail in budget.details)
{
@@ -2878,18 +2877,8 @@ namespace rmutr_report.Controllers
var budgetExpenditure = new List<budget_expenditure_report_from_revenue_v2>() { budget };
Report report = new Report();
foreach (var d in detail)
{
if (d.row<=120)
{
report.Load(_setting.report_path + "budget_expenditure_report_from_revenue_v2.frx");
}
if (d.row>120)
{
report.Load(_setting.report_path + "budget_expenditure_report_from_revenue_v3.frx");
}
}
// report.Load(_setting.report_path + "budget_expenditure_report_from_revenue_v2.frx");
report.Load(_setting.report_path + "budget_expenditure_report_from_revenue_v2.frx");
report.RegisterData(budgetExpenditure, "budget_expenditure_report_from_revenue_v2");
report.Prepare();