This commit is contained in:
kamonwan taengsuk
2023-07-13 16:07:12 +07:00
parent 6ac23499d4
commit b18118e309
7 changed files with 264 additions and 265 deletions

View File

@@ -1598,11 +1598,11 @@ namespace rmutr_report.Controllers
public IActionResult GetBudgetReport([FromRoute] string type,
[FromBody] budget_expenditure_from_revenue budget_expenditure_from_revenues)
{
var topic2 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details.ToArray()
.Where(i => i.topic_type == 2).ToList();
var topic3 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details.ToArray()
.Where(i => i.topic_type == 3).OrderBy(f=>f.couse_uid).ThenBy(m=>m.major_uid)
.ThenBy(r=>r.row).ToList();
// var topic2 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
// .Where(i => i.topic_type == 2).ToList();
// var topic3 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
// .Where(i => i.topic_type == 3).OrderBy(f=>f.couse_uid).ThenBy(m=>m.major_uid)
// .ThenBy(r=>r.row).ToList();
// var sum_1 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
// .Where(h => h.topic_type == 2).Sum(j =>
// j.current_students);
@@ -1667,7 +1667,7 @@ namespace rmutr_report.Controllers
foreach (var detail in budget_expenditure_from_revenues.budget_expenditure_from_revenue_details)
{
if (detail.topic_type == 1 && detail.topic_type != 2&& detail.topic_type != 3)
if (detail.topic_type == 1)
{
detail.topic_1 = detail.topic;
detail.topic_2 = null;
@@ -1718,66 +1718,65 @@ namespace rmutr_report.Controllers
var sum12 = budget_expenditure_from_revenues.budget_expenditure_from_revenue_details
.Where(h => h.topic_type == 1).Sum(j =>
j.education_fee_less_fee_total);
budget_expenditure_from_revenues.sum_12 = sum12;
detail.current_students = topic2.Sum(d=>d.current_students);
detail.students_reduced = topic2.Sum(d=>d.students_reduced);
detail.students_estimates = topic2.Sum(d=>d.students_estimates);
detail.price_regis_flat_payment = topic2.Sum(d=>d.price_regis_flat_payment);
detail.library_total = topic2.Sum(d=>d.library_total);
detail.utilities_total =topic2.Sum(d=>d.utilities_total);
detail.student_club_library_total = topic2.Sum(d=>d.student_club_library_total);
detail.accident_insurance_total = topic2.Sum(d=>d.accident_insurance_total);
detail.academic_activities_total = topic2.Sum(d=>d.academic_activities_total);
detail.examination_and_x_rays_total = topic2.Sum(d=>d.examination_and_x_rays_total);
detail.tuition_fee_total = topic2.Sum(d=>d.tuition_fee_total);
detail.education_fee_less_fee_total = topic2.Sum(d=>d.education_fee_less_fee_total);
budget_expenditure_from_revenues.sum_12 = sum12;
// detail.current_students = topic3.Sum(d=>d.current_students);
//
// detail.students_reduced = topic3.Sum(d=>d.students_reduced);
//
// detail.students_estimates = topic3.Sum(d=>d.students_estimates);
//
// detail.price_regis_flat_payment = topic3.Sum(d=>d.price_regis_flat_payment);
//
// detail.library_total = topic3.Sum(d=>d.library_total);
//
// detail.utilities_total =topic3.Sum(d=>d.utilities_total);
//
// detail.student_club_library_total = topic3.Sum(d=>d.student_club_library_total);
//
// detail.accident_insurance_total = topic3.Sum(d=>d.accident_insurance_total);
//
// detail.academic_activities_total = topic3.Sum(d=>d.academic_activities_total);
//
// detail.examination_and_x_rays_total = topic3.Sum(d=>d.examination_and_x_rays_total);
//
// detail.tuition_fee_total = topic3.Sum(d=>d.tuition_fee_total);
//
// detail.education_fee_less_fee_total = topic3.Sum(d=>d.education_fee_less_fee_total);
}
if (detail.topic_type == 2&& detail.topic_type != 1&& detail.topic_type != 3)
if (detail.topic_type == 2)
{
detail.topic_1 = detail.topic;
detail.topic_2 = null;
detail.current_students = topic3.Sum(d=>d.current_students);
// detail.current_students = topic2.Sum(d=>d.current_students);
//
// detail.students_reduced = topic2.Sum(d=>d.students_reduced);
//
// detail.students_estimates = topic2.Sum(d=>d.students_estimates);
//
// detail.price_regis_flat_payment = topic2.Sum(d=>d.price_regis_flat_payment);
//
// detail.library_total = topic2.Sum(d=>d.library_total);
//
// detail.utilities_total =topic2.Sum(d=>d.utilities_total);
//
// detail.student_club_library_total = topic2.Sum(d=>d.student_club_library_total);
//
// detail.accident_insurance_total = topic2.Sum(d=>d.accident_insurance_total);
//
// detail.academic_activities_total = topic2.Sum(d=>d.academic_activities_total);
//
// detail.examination_and_x_rays_total = topic2.Sum(d=>d.examination_and_x_rays_total);
//
// detail.tuition_fee_total = topic2.Sum(d=>d.tuition_fee_total);
//
// detail.education_fee_less_fee_total = topic2.Sum(d=>d.education_fee_less_fee_total);
}
detail.students_reduced = topic3.Sum(d=>d.students_reduced);
detail.students_estimates = topic3.Sum(d=>d.students_estimates);
detail.price_regis_flat_payment = topic3.Sum(d=>d.price_regis_flat_payment);
detail.library_total = topic3.Sum(d=>d.library_total);
detail.utilities_total =topic3.Sum(d=>d.utilities_total);
detail.student_club_library_total = topic3.Sum(d=>d.student_club_library_total);
detail.accident_insurance_total = topic3.Sum(d=>d.accident_insurance_total);
detail.academic_activities_total = topic3.Sum(d=>d.academic_activities_total);
detail.examination_and_x_rays_total = topic3.Sum(d=>d.examination_and_x_rays_total);
detail.tuition_fee_total = topic3.Sum(d=>d.tuition_fee_total);
detail.education_fee_less_fee_total = topic3.Sum(d=>d.education_fee_less_fee_total);
}
if (detail.topic_type == 3&& detail.topic_type != 1&& detail.topic_type != 2)
if (detail.topic_type == 3)
{
detail.topic_2 = detail.topic;
detail.topic_1 = null;

View File

@@ -91,6 +91,7 @@ namespace rmutr_report.Models
public Guid? academic_year_uid { get; set; }
public Guid? couse_uid { get; set; }
public Guid? major_uid { get; set; }
//public List<t_budget_expenditure_from_revenue_detail_2> budget_expenditure_from_revenue_details_2 { get; set; }
}
@@ -134,9 +135,10 @@ namespace rmutr_report.Models
//
//
// public int? topic_type { get; set; }
// //public List<t_budget_expenditure_from_revenue_detail_3> budget_expenditure_from_revenue_details_3 { get; set; }
//
// }
//
// public class t_budget_expenditure_from_revenue_detail_3
// {
// public string topic { get; set; }

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/12/2023 17:34:29" ReportInfo.CreatorVersion="2021.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="07/13/2023 15:33:26" ReportInfo.CreatorVersion="2021.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="budget_expenditure_from_revenue" ReferenceName="budget_expenditure_from_revenue" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
@@ -37,7 +37,7 @@
<Column Name="tuition_less_fee_per_student" DataType="System.Decimal"/>
<Column Name="education_fee_less_fee_total" DataType="System.Decimal"/>
<Column Name="topic_type" DataType="System.Int32"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<Column Name="sum_1" DataType="System.Decimal"/>
<Column Name="sum_2" DataType="System.Decimal"/>
<Column Name="sum_3" DataType="System.Decimal"/>
@@ -187,212 +187,210 @@
</TableRow>
</TableObject>
</PageHeaderBand>
<DataBand Name="Data1" Top="262.7" Width="2079">
<DataBand Name="Data2" Top="270.24" Width="2079" Height="47.25" DataSource="budget_expenditure_from_revenue_details">
<TableObject Name="Table17" Width="2079" Height="47.25" Border.Lines="All">
<TableColumn Name="Column131" Width="236.25"/>
<TableColumn Name="Column132"/>
<TableColumn Name="Column133" Width="75.6"/>
<TableColumn Name="Column134" Width="75.6"/>
<TableColumn Name="Column135" Width="75.6"/>
<TableColumn Name="Column136" Width="85.05"/>
<TableColumn Name="Column137" Width="85.05"/>
<TableColumn Name="Column138" Width="85.05"/>
<TableColumn Name="Column139"/>
<TableColumn Name="Column140"/>
<TableColumn Name="Column141"/>
<TableColumn Name="Column142"/>
<TableColumn Name="Column143"/>
<TableColumn Name="Column144"/>
<TableColumn Name="Column145"/>
<TableColumn Name="Column146"/>
<TableColumn Name="Column147"/>
<TableColumn Name="Column148"/>
<TableColumn Name="Column149"/>
<TableColumn Name="Column188"/>
<TableColumn Name="Column189" Width="103.95"/>
<TableColumn Name="Column190" Width="103.95"/>
<TableColumn Name="Column191" Width="151.2"/>
<TableColumn Name="Column220" Width="141.75"/>
<TableRow Name="Row17" Height="47.25">
<TableCell Name="Cell191" Border.Lines="Left, Top, Bottom" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_1]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell192" Border.Lines="Right, Top, Bottom" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell193" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_year_name_th]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell194" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.current_students]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell195" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.students_reduced]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell196" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.students_estimates]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell197" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.price_regis_flat_payment_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell198" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.price_regis_flat_payment]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell199" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.library_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell200" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.library_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell201" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.utilities_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell202" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.utilities_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell203" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.student_club_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell204" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.student_club_library_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell205" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.accident_insurance_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell206" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.accident_insurance_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell207" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_activities_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell208" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_activities_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell209" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.examination_and_x_rays_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell248" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.examination_and_x_rays_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell249" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_fee_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell250" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_fee_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell251" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_less_fee_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell280" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.education_fee_less_fee_total]" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
<DataBand Name="Data1" Top="263.48" Width="2079" Height="47.25" DataSource="budget_expenditure_from_revenue_details">
<TableObject Name="Table17" Width="2079" Height="47.25" Border.Lines="All">
<TableColumn Name="Column131" Width="236.25"/>
<TableColumn Name="Column132"/>
<TableColumn Name="Column133" Width="75.6"/>
<TableColumn Name="Column134" Width="75.6"/>
<TableColumn Name="Column135" Width="75.6"/>
<TableColumn Name="Column136" Width="85.05"/>
<TableColumn Name="Column137" Width="85.05"/>
<TableColumn Name="Column138" Width="85.05"/>
<TableColumn Name="Column139"/>
<TableColumn Name="Column140"/>
<TableColumn Name="Column141"/>
<TableColumn Name="Column142"/>
<TableColumn Name="Column143"/>
<TableColumn Name="Column144"/>
<TableColumn Name="Column145"/>
<TableColumn Name="Column146"/>
<TableColumn Name="Column147"/>
<TableColumn Name="Column148"/>
<TableColumn Name="Column149"/>
<TableColumn Name="Column188"/>
<TableColumn Name="Column189" Width="103.95"/>
<TableColumn Name="Column190" Width="103.95"/>
<TableColumn Name="Column191" Width="151.2"/>
<TableColumn Name="Column220" Width="141.75"/>
<TableRow Name="Row17" Height="47.25">
<TableCell Name="Cell191" Border.Lines="Left, Top, Bottom" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_1]" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell192" Border.Lines="Right, Top, Bottom" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell193" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_year_name_th]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell194" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.current_students]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell195" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.students_reduced]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell196" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.students_estimates]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell197" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.price_regis_flat_payment_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell198" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.price_regis_flat_payment]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell199" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.library_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell200" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.library_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell201" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.utilities_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell202" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.utilities_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell203" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.student_club_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell204" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.student_club_library_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell205" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.accident_insurance_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell206" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.accident_insurance_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell207" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_activities_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell208" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.academic_activities_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell209" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.examination_and_x_rays_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell248" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.examination_and_x_rays_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell249" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_fee_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell250" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_fee_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell251" Border.Lines="All" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.tuition_less_fee_per_student]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" AutoShrink="FontSize" AutoShrinkMinSize="11" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell280" Text="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.education_fee_less_fee_total]" HorzAlign="Right" VertAlign="Center" Font="TH Sarabun New, 14pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
<GeneralFormat/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 1" Fill.Color="255, 242, 204" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyFill="true" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 2" Font="TH Sarabun New, 14.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[budget_expenditure_from_revenue.budget_expenditure_from_revenue_details.topic_type]== 3" Font="TH Sarabun New, 14.25pt" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="325.04" Width="2079" Height="151.2">
<ReportSummaryBand Name="ReportSummary1" Top="319.07" Width="2079" Height="151.2">
<TableObject Name="Table26" Width="2079" Height="47.25" Border.Lines="All">
<TableColumn Name="Column221" Width="217.35"/>
<TableColumn Name="Column222" Width="85.05"/>